From 63e3a5c02fdc252c0f4d61ce4575e418997643a5 Mon Sep 17 00:00:00 2001 From: M-Hietala <78813398+M-Hietala@users.noreply.github.com> Date: Thu, 2 Apr 2026 12:56:02 -0500 Subject: [PATCH 1/4] adding managed network support --- .../cognitiveservices/_client_factory.py | 16 + .../cognitiveservices/_help.py | 160 +++++++++ .../cognitiveservices/_params.py | 65 ++++ .../cognitiveservices/commands.py | 31 +- .../cognitiveservices/custom.py | 252 +++++++++++++- .../cognitiveservices/linter_exclusions.yml | 5 + .../data/managed_network_outbound_rules.json | 12 + .../data/managed_network_outbound_rules.yaml | 9 + .../tests/latest/test_managed_network.py | 309 ++++++++++++++++++ src/azure-cli/requirements.py3.Darwin.txt | 2 +- src/azure-cli/requirements.py3.Linux.txt | 2 +- src/azure-cli/requirements.py3.windows.txt | 2 +- src/azure-cli/setup.py | 2 +- 13 files changed, 860 insertions(+), 7 deletions(-) create mode 100644 src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json create mode 100644 src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml create mode 100644 src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py index 0cafbb7aaa5..e9efdb83de6 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py @@ -93,6 +93,22 @@ def cf_account_connections(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).account_connections +def cf_managed_network_settings(cli_ctx, *_): + return get_cognitiveservices_management_client(cli_ctx).managed_network_settings + + +def cf_managed_network_provisions(cli_ctx, *_): + return get_cognitiveservices_management_client(cli_ctx).managed_network_provisions + + +def cf_outbound_rule(cli_ctx, *_): + return get_cognitiveservices_management_client(cli_ctx).outbound_rule + + +def cf_outbound_rules(cli_ctx, *_): + return get_cognitiveservices_management_client(cli_ctx).outbound_rules + + def cf_account_capability_hosts(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).account_capability_hosts diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py index d98a475d8c7..be72a370a1d 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_help.py @@ -719,6 +719,166 @@ text: az cognitiveservices agent update --account-name myAccount --project-name myProject --name myAgent --agent-version 1 --min-replicas 1 --max-replicas 2 """ +helps['cognitiveservices account managed-network'] = """ + type: group + short-summary: Manage the managed network settings for an Azure Cognitive Services account. + long-summary: > + Managed network settings control the network isolation mode and firewall configuration + for AI Foundry accounts. +""" + +helps['cognitiveservices account managed-network create'] = """ + type: command + short-summary: Create a managed network for an Azure Cognitive Services account. + examples: + - name: Create a managed network with internet outbound access. + text: > + az cognitiveservices account managed-network create + --name my-account + --resource-group my-resource-group + --managed-network allow_internet_outbound + - name: Create a managed network with approved outbound only and a standard firewall. + text: > + az cognitiveservices account managed-network create + --name my-account + --resource-group my-resource-group + --managed-network allow_only_approved_outbound + --firewall-sku Standard +""" + +helps['cognitiveservices account managed-network update'] = """ + type: command + short-summary: Update managed network settings for an Azure Cognitive Services account. + examples: + - name: Update the firewall SKU. + text: > + az cognitiveservices account managed-network update + --name my-account + --resource-group my-resource-group + --firewall-sku Standard + - name: Change the isolation mode. + text: > + az cognitiveservices account managed-network update + --name my-account + --resource-group my-resource-group + --managed-network allow_only_approved_outbound +""" + +helps['cognitiveservices account managed-network show'] = """ + type: command + short-summary: Show the managed network settings for an Azure Cognitive Services account. + examples: + - name: Show managed network settings. + text: > + az cognitiveservices account managed-network show + --name my-account + --resource-group my-resource-group +""" + +helps['cognitiveservices account managed-network provision-network'] = """ + type: command + short-summary: Provision the managed network for an Azure Cognitive Services account. + long-summary: > + Triggers provisioning of the managed network. This is a long-running operation. + examples: + - name: Provision the managed network. + text: > + az cognitiveservices account managed-network provision-network + --name my-account + --resource-group my-resource-group +""" + +helps['cognitiveservices account managed-network outbound-rule'] = """ + type: group + short-summary: Manage outbound rules for the managed network of an Azure Cognitive Services account. + long-summary: > + Outbound rules control egress traffic from the managed network. Rules can be + of type FQDN, PrivateEndpoint, or ServiceTag. +""" + +helps['cognitiveservices account managed-network outbound-rule list'] = """ + type: command + short-summary: List all outbound rules for the managed network. + examples: + - name: List all outbound rules. + text: > + az cognitiveservices account managed-network outbound-rule list + --name my-account + --resource-group my-resource-group +""" + +helps['cognitiveservices account managed-network outbound-rule show'] = """ + type: command + short-summary: Show details of an outbound rule. + examples: + - name: Show an outbound rule. + text: > + az cognitiveservices account managed-network outbound-rule show + --name my-account + --resource-group my-resource-group + --rule my-rule +""" + +helps['cognitiveservices account managed-network outbound-rule remove'] = """ + type: command + short-summary: Remove an outbound rule from the managed network. + examples: + - name: Remove an outbound rule. + text: > + az cognitiveservices account managed-network outbound-rule remove + --name my-account + --resource-group my-resource-group + --rule my-rule +""" + +helps['cognitiveservices account managed-network outbound-rule set'] = """ + type: command + short-summary: Create or update a single outbound rule for the managed network. + long-summary: > + Creates or updates an outbound rule of the specified type (FQDN, PrivateEndpoint, or ServiceTag). + examples: + - name: Create an FQDN outbound rule. + text: > + az cognitiveservices account managed-network outbound-rule set + --name my-account + --resource-group my-resource-group + --rule my-fqdn-rule + --type fqdn + --destination "*.example.com" + - name: Create a ServiceTag outbound rule. + text: > + az cognitiveservices account managed-network outbound-rule set + --name my-account + --resource-group my-resource-group + --rule my-servicetag-rule + --type servicetag + --category UserDefined + --destination '{"serviceTag": "Storage", "protocol": "TCP", "portRanges": "443"}' + - name: Create a PrivateEndpoint outbound rule. + text: > + az cognitiveservices account managed-network outbound-rule set + --name my-account + --resource-group my-resource-group + --rule my-pe-rule + --type privateendpoint + --destination /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-rg/providers/Microsoft.Storage/storageAccounts/mystorageaccount + --subresource-target blob +""" + +helps['cognitiveservices account managed-network outbound-rule bulk-set'] = """ + type: command + short-summary: Bulk create or update outbound rules from a YAML or JSON file. + long-summary: > + Reads outbound rules from a YAML or JSON file and creates or updates them in bulk. + examples: + - name: Bulk set outbound rules from a YAML file. + text: > + az cognitiveservices account managed-network outbound-rule bulk-set + --name my-account + --resource-group my-resource-group + --file rules.yaml +""" + helps['cognitiveservices account connection'] = """ type: group short-summary: Manage Azure Cognitive Services connection and its more specific derivatives. diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py index 4cd91d8978a..b59fda7f131 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -688,6 +688,71 @@ def load_arguments(self, _): c.argument('next_count', help='Cognitive Services account commitment plan next commitment period count.') c.argument('next_tier', help='Cognitive Services account commitment plan next commitment period tier.') + with self.argument_context('cognitiveservices account managed-network') as c: + c.argument('managed_network_name', + options_list=['--managed-network-name'], + help='Name of the managed network. Only "default" is supported.', + default='default') + + with self.argument_context('cognitiveservices account managed-network create') as c: + c.argument('managed_network', + options_list=['--managed-network'], + arg_type=get_enum_type(['allow_internet_outbound', 'allow_only_approved_outbound']), + help='Isolation mode for the managed network.', + required=True) + c.argument('firewall_sku', + options_list=['--firewall-sku'], + arg_type=get_enum_type(['Basic', 'Standard']), + help='Firewall SKU for the managed network.') + + with self.argument_context('cognitiveservices account managed-network update') as c: + c.argument('managed_network_name', default=None) + c.argument('managed_network', + options_list=['--managed-network'], + arg_type=get_enum_type(['allow_internet_outbound', 'allow_only_approved_outbound']), + help='Isolation mode for the managed network.') + c.argument('firewall_sku', + options_list=['--firewall-sku'], + arg_type=get_enum_type(['Basic', 'Standard']), + help='Firewall SKU for the managed network.') + + with self.argument_context('cognitiveservices account managed-network outbound-rule') as c: + c.argument('managed_network_name', + options_list=['--managed-network-name'], + help='Name of the managed network. Only "default" is supported.', + default='default', + required=False) + c.argument('rule_name', + options_list=['--rule'], + help='Name of the outbound rule.') + + with self.argument_context('cognitiveservices account managed-network outbound-rule set') as c: + c.argument('rule_type', + options_list=['--type'], + arg_type=get_enum_type(['fqdn', 'privateendpoint', 'servicetag']), + help='Type of the outbound rule.', + required=True) + c.argument('category', + options_list=['--category'], + arg_type=get_enum_type(['Required', 'Recommended', 'UserDefined', 'Dependency']), + help='Category of the outbound rule.') + c.argument('destination', + options_list=['--destination'], + help='Destination for the outbound rule. ' + 'For FQDN rules, this is the FQDN string. ' + 'For PrivateEndpoint rules, this is the service resource ID. ' + 'For ServiceTag rules, provide a JSON string or @file path.') + c.argument('subresource_target', + options_list=['--subresource-target'], + help='Subresource target for PrivateEndpoint outbound rules ' + '(e.g. blob, table, queue, file, web, dfs).') + + with self.argument_context('cognitiveservices account managed-network outbound-rule bulk-set') as c: + c.argument('file', + options_list=['--file'], + help='Path to a YAML or JSON file containing outbound rules definition.', + required=True) + with self.argument_context('cognitiveservices account project') as c: c.argument('project_name', help='Cognitive Services account project name') c.argument('location', arg_type=get_location_type(self.cli_ctx), diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py index db04523f15d..0ee6c8c8a97 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py @@ -6,7 +6,8 @@ from azure.cli.core.commands import CliCommandType from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus, \ cf_deleted_accounts, cf_deployments, cf_commitment_plans, cf_commitment_tiers, cf_models, cf_usages, \ - cf_ai_projects, cf_account_connections, cf_projects, cf_project_connections + cf_ai_projects, cf_account_connections, cf_projects, cf_project_connections, \ + cf_managed_network_settings, cf_managed_network_provisions, cf_outbound_rule def load_command_table(self, _): @@ -134,6 +135,34 @@ def load_command_table(self, _): with self.command_group('cognitiveservices agent logs', client_factory=cf_ai_projects, is_preview=True) as g: g.custom_show_command('show', 'agent_logs_show') + managed_network_settings_type = CliCommandType( + operations_tmpl='azure.mgmt.cognitiveservices.operations#ManagedNetworkSettingsOperations.{}', + client_factory=cf_managed_network_settings + ) + + outbound_rule_type = CliCommandType( + operations_tmpl='azure.mgmt.cognitiveservices.operations#OutboundRuleOperations.{}', + client_factory=cf_outbound_rule + ) + + with self.command_group( + 'cognitiveservices account managed-network', managed_network_settings_type, + client_factory=cf_managed_network_settings, is_preview=True) as g: + g.custom_command('create', 'managed_network_create') + g.custom_command('update', 'managed_network_update') + g.custom_show_command('show', 'managed_network_show') + g.custom_command('provision-network', 'managed_network_provision', + client_factory=cf_managed_network_provisions) + + with self.command_group( + 'cognitiveservices account managed-network outbound-rule', outbound_rule_type, + client_factory=cf_outbound_rule, is_preview=True) as g: + g.command('list', 'list') + g.show_command('show', 'get') + g.custom_command('remove', 'outbound_rule_remove', confirmation=True) + g.custom_command('set', 'outbound_rule_set') + g.custom_command('bulk-set', 'outbound_rule_bulk_set') + with self.command_group( 'cognitiveservices account project', projects_type, client_factory=cf_projects) as g: diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py index b6faa9a86be..4dfb311ca8b 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -24,7 +24,12 @@ Deployment, DeploymentModel, DeploymentScaleSettings, DeploymentProperties, \ CommitmentPlan, CommitmentPlanProperties, CommitmentPeriod, \ ConnectionPropertiesV2BasicResource, ConnectionUpdateContent, \ - Project, ProjectProperties + Project, ProjectProperties, \ + ManagedNetworkSettingsPropertiesBasicResource, ManagedNetworkSettingsProperties, \ + ManagedNetworkSettingsEx, \ + OutboundRuleBasicResource, FqdnOutboundRule, \ + PrivateEndpointOutboundRule, PrivateEndpointOutboundRuleDestination, \ + ServiceTagOutboundRule, ServiceTagOutboundRuleDestination from azure.cli.command_modules.cognitiveservices._client_factory import cf_accounts, cf_resource_skus from azure.cli.core.azclierror import ( BadRequestError, @@ -38,7 +43,8 @@ CLIInternalError, ResourceNotFoundError, ) -from azure.cli.command_modules.cognitiveservices._utils import load_connection_from_source, compose_identity +from azure.cli.command_modules.cognitiveservices._utils import load_connection_from_source, compose_identity, \ + _load_source_as_dict logger = get_logger(__name__) @@ -2191,6 +2197,248 @@ def agent_create( # pylint: disable=too-many-locals return version_response +# -------------------------------------------------------------------------------------------- +# Managed Network commands +# -------------------------------------------------------------------------------------------- + + +_ISOLATION_MODE_MAP = { + 'allow_internet_outbound': 'AllowInternetOutbound', + 'allow_only_approved_outbound': 'AllowOnlyApprovedOutbound', +} + + +def managed_network_create( + client, + resource_group_name, + account_name, + managed_network, + managed_network_name='default', + firewall_sku=None, +): + """ + Create a managed network for an Azure Cognitive Services account. + """ + isolation_mode = _ISOLATION_MODE_MAP.get(managed_network, managed_network) + managed_network_settings = ManagedNetworkSettingsEx( + isolation_mode=isolation_mode, + firewall_sku=firewall_sku, + ) + properties = ManagedNetworkSettingsProperties(managed_network=managed_network_settings) + body = ManagedNetworkSettingsPropertiesBasicResource(properties=properties) + return client.begin_put(resource_group_name, account_name, managed_network_name, body) + + +def managed_network_update( + client, + resource_group_name, + account_name, + managed_network_name='default', + managed_network=None, + firewall_sku=None, +): + """ + Update managed network settings for an Azure Cognitive Services account. + """ + isolation_mode = _ISOLATION_MODE_MAP.get(managed_network, managed_network) if managed_network else None + managed_network_settings = ManagedNetworkSettingsEx( + isolation_mode=isolation_mode, + firewall_sku=firewall_sku, + ) + properties = ManagedNetworkSettingsProperties(managed_network=managed_network_settings) + body = ManagedNetworkSettingsPropertiesBasicResource(properties=properties) + return client.begin_patch(resource_group_name, account_name, managed_network_name, body) + + +def managed_network_provision( + client, + resource_group_name, + account_name, + managed_network_name='default', +): + """ + Provision the managed network for an Azure Cognitive Services account. + """ + return client.begin_provision_managed_network(resource_group_name, account_name, managed_network_name, body={}) + + +def managed_network_show( + client, + resource_group_name, + account_name, + managed_network_name='default', +): + """ + Show managed network settings for an Azure Cognitive Services account. + """ + return client.get(resource_group_name, account_name, managed_network_name) + + +# -------------------------------------------------------------------------------------------- +# Outbound Rule commands +# -------------------------------------------------------------------------------------------- + + +_RULE_TYPE_MAP = { + 'fqdn': 'FQDN', + 'privateendpoint': 'PrivateEndpoint', + 'servicetag': 'ServiceTag', +} + + +def _build_outbound_rule(rule_type, category=None, destination=None, subresource_target=None): + """Build an outbound rule SDK model object based on rule type.""" + normalized_type = _RULE_TYPE_MAP.get(rule_type.lower(), rule_type) + + if normalized_type == 'FQDN': + return FqdnOutboundRule( + category=category, + destination=destination + ) + if normalized_type == 'PrivateEndpoint': + # PrivateEndpoint requires a structured destination object + if isinstance(destination, PrivateEndpointOutboundRuleDestination): + dest_obj = destination + elif isinstance(destination, dict): + dest_obj = PrivateEndpointOutboundRuleDestination(**destination) + elif isinstance(destination, str): + try: + dest_dict = json.loads(destination) + dest_obj = PrivateEndpointOutboundRuleDestination(**dest_dict) + except (json.JSONDecodeError, TypeError): + dest_obj = PrivateEndpointOutboundRuleDestination( + service_resource_id=destination, + subresource_target=subresource_target + ) + else: + dest_obj = PrivateEndpointOutboundRuleDestination( + service_resource_id=destination, + subresource_target=subresource_target + ) + return PrivateEndpointOutboundRule( + category=category, + destination=dest_obj + ) + if normalized_type == 'ServiceTag': + # ServiceTag requires a structured destination object with serviceTag field + if isinstance(destination, ServiceTagOutboundRuleDestination): + dest_obj = destination + elif isinstance(destination, dict): + dest_obj = ServiceTagOutboundRuleDestination(**destination) + elif isinstance(destination, str): + try: + dest_dict = json.loads(destination) + dest_obj = ServiceTagOutboundRuleDestination(**dest_dict) + except (json.JSONDecodeError, TypeError): + dest_obj = ServiceTagOutboundRuleDestination( + service_tag=destination, + protocol='TCP', + port_ranges='443' + ) + else: + dest_obj = ServiceTagOutboundRuleDestination( + service_tag=destination, + protocol='TCP', + port_ranges='443' + ) + return ServiceTagOutboundRule( + category=category, + destination=dest_obj + ) + raise InvalidArgumentValueError( + f"Unknown rule type: {rule_type}. Must be one of: fqdn, privateendpoint, servicetag") + + +def outbound_rule_set( + client, + resource_group_name, + account_name, + rule_name, + rule_type, + managed_network_name='default', + category=None, + destination=None, + subresource_target=None, +): + """ + Create or update a single outbound rule for the managed network. + """ + rule = _build_outbound_rule(rule_type, category=category, destination=destination, + subresource_target=subresource_target) + body = OutboundRuleBasicResource(properties=rule) + return client.begin_create_or_update( + resource_group_name, account_name, managed_network_name, rule_name, body) + + +def outbound_rule_remove( + client, + resource_group_name, + account_name, + rule_name, + managed_network_name='default', +): + """ + Delete an outbound rule. Handles 404 during LRO polling when the resource + is already gone before the poller checks status. + """ + from azure.core.exceptions import HttpResponseError + poller = client.begin_delete( + resource_group_name, account_name, managed_network_name, rule_name) + try: + return poller.result() + except HttpResponseError as ex: + if ex.status_code == 404: + return None + raise + + +def outbound_rule_bulk_set( + client, + resource_group_name, + account_name, + file, + managed_network_name='default', +): + """ + Bulk create or update outbound rules from a YAML/JSON file. + Uses individual set calls for each rule. + """ + rules_dict = _load_source_as_dict(file) + + # Build the outbound rules list from file content + outbound_rules = {} + rules_data = rules_dict.get('rules', rules_dict) + if isinstance(rules_data, dict): + for name, rule_data in rules_data.items(): + rt = rule_data.get('type', 'FQDN') + cat = rule_data.get('category', None) + dest = rule_data.get('destination', None) + subresource = rule_data.get('subresourceTarget', None) + outbound_rules[name] = _build_outbound_rule( + rt, category=cat, destination=dest, subresource_target=subresource) + elif isinstance(rules_data, list): + for rule_data in rules_data: + name = rule_data.get('name') + if not name: + raise InvalidArgumentValueError( + "Each rule in the list must have a 'name' field.") + rt = rule_data.get('type', 'FQDN') + cat = rule_data.get('category', None) + dest = rule_data.get('destination', None) + subresource = rule_data.get('subresourceTarget', None) + outbound_rules[name] = _build_outbound_rule(rt, category=cat, destination=dest, + subresource_target=subresource) + + # Create each rule individually + results = [] + for rule_name, rule in outbound_rules.items(): + body = OutboundRuleBasicResource(properties=rule) + poller = client.begin_create_or_update( + resource_group_name, account_name, managed_network_name, rule_name, body) + results.append(poller.result()) + return results + + def project_create( client, resource_group_name, diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml index a1f8f02affc..092f17ca78a 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml @@ -2,5 +2,10 @@ cognitiveservices account deployment: parameters: spillover_deployment_name: + rule_exclusions: + - missing_parameter_test_coverage +cognitiveservices account managed-network: + parameters: + managed_network_name: rule_exclusions: - missing_parameter_test_coverage \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json new file mode 100644 index 00000000000..64241799f7a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json @@ -0,0 +1,12 @@ +{ + "fqdn-rule-3": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.azure.com" + }, + "fqdn-rule-4": { + "type": "FQDN", + "category": "UserDefined", + "destination": "*.ai.azure.com" + } +} diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml new file mode 100644 index 00000000000..7470abeada1 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml @@ -0,0 +1,9 @@ +fqdn-rule-1: + type: FQDN + category: UserDefined + destination: "*.openai.azure.com" + +fqdn-rule-2: + type: FQDN + category: UserDefined + destination: "*.cognitiveservices.azure.com" diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py new file mode 100644 index 00000000000..4ebbe4af6a8 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py @@ -0,0 +1,309 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + +import unittest +import os + +from azure.cli.testsdk import ScenarioTest, ResourceGroupPreparer, StorageAccountPreparer + + +TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) + + +# @unittest.skip("Skipped: pending service fix") +class CognitiveServicesManagedNetworkTests(ScenarioTest): + + INPUT_DATA_PATH: str = os.path.join(TEST_DIR, 'data') + + @ResourceGroupPreparer() + def test_managed_network_crud(self, resource_group): + """Test managed network create, update, show, list operations.""" + + sname = self.create_random_name(prefix='cog', length=12) + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus' + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}'), + self.check('location', '{location}'), + self.check('sku.name', '{sku}')]) + + # Create managed network with internet outbound + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_internet_outbound', + checks=[ + self.check('properties.managedNetwork.isolationMode', 'AllowInternetOutbound') + ]) + + # Show managed network + self.cmd('az cognitiveservices account managed-network show -n {sname} -g {rg}', + checks=[ + self.check('properties.managedNetwork.isolationMode', 'AllowInternetOutbound') + ]) + + # Update managed network to approved outbound only with standard firewall + self.cmd('az cognitiveservices account managed-network update -n {sname} -g {rg} --managed-network allow_only_approved_outbound --firewall-sku Standard', + checks=[ + self.check('properties.managedNetwork.isolationMode', 'AllowOnlyApprovedOutbound'), + self.check('properties.managedNetwork.firewallSku', 'Standard') + ]) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + @ResourceGroupPreparer() + def test_managed_network_provision(self, resource_group): + """Test managed network provisioning.""" + + sname = self.create_random_name(prefix='cog', length=12) + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus' + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Provision managed network + ret = self.cmd('az cognitiveservices account managed-network provision-network -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + @ResourceGroupPreparer() + def test_outbound_rule_fqdn(self, resource_group): + """Test FQDN outbound rule operations.""" + + sname = self.create_random_name(prefix='cog', length=12) + rule_name = 'test-fqdn-rule' + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus', + 'rule_name': rule_name + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Create FQDN outbound rule + self.cmd('az cognitiveservices account managed-network outbound-rule set -n {sname} -g {rg} --rule {rule_name} --type fqdn --destination "*.openai.azure.com" --category UserDefined', + checks=[ + self.check('properties.type', 'FQDN'), + self.check('properties.destination', '*.openai.azure.com'), + self.check('properties.category', 'UserDefined') + ]) + + # Show outbound rule (SDK deserializer returns null for name/id fields) + self.cmd('az cognitiveservices account managed-network outbound-rule show -n {sname} -g {rg} --rule {rule_name}', + checks=[ + self.check('properties.type', 'FQDN'), + self.check('properties.destination', '*.openai.azure.com') + ]) + + # List outbound rules (may include system-default rules like AzureActiveDirectory) + ret = self.cmd('az cognitiveservices account managed-network outbound-rule list -n {sname} -g {rg}', + checks=[ + self.check('length(@) >= `1`', True) + ]) + self.assertEqual(ret.exit_code, 0) + + # Delete outbound rule + ret = self.cmd('az cognitiveservices account managed-network outbound-rule remove -n {sname} -g {rg} --rule {rule_name} --yes') + self.assertEqual(ret.exit_code, 0) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + @ResourceGroupPreparer() + @StorageAccountPreparer(parameter_name='storage_account', allow_shared_key_access=False, kind='StorageV2') + def test_outbound_rule_private_endpoint(self, resource_group, storage_account): + """Test Private Endpoint outbound rule operations.""" + + sname = self.create_random_name(prefix='cog', length=12) + rule_name = 'test-pe-rule' + + # Get the real storage account resource ID + stgacct = self.cmd('az storage account show -n {} -g {}'.format(storage_account, resource_group)).get_output_in_json() + storage_id = stgacct['id'] + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus', + 'rule_name': rule_name, + 'storage_id': storage_id + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Create Private Endpoint outbound rule + # Note: properties.type deserializes as null because the SDK's OutboundRule._subtype_map + # only maps FQDN (PrivateEndpoint/ServiceTag subtypes are missing from the Swagger spec) + self.cmd('az cognitiveservices account managed-network outbound-rule set -n {sname} -g {rg} --rule {rule_name} --type privateendpoint --destination {storage_id} --subresource-target blob --category UserDefined', + checks=[ + self.check('properties.category', 'UserDefined'), + self.check('properties.destination.subresourceTarget', 'blob') + ]) + + # Show outbound rule + self.cmd('az cognitiveservices account managed-network outbound-rule show -n {sname} -g {rg} --rule {rule_name}', + checks=[ + self.check('properties.category', 'UserDefined'), + self.check('properties.destination.subresourceTarget', 'blob') + ]) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + # @unittest.skip("ServiceTag rule LRO polling returns 404 - service-side issue") + @ResourceGroupPreparer(random_name_length=20, parameter_name_for_location='location', key='rg_loc') + def test_outbound_rule_service_tag(self, resource_group): + """Test Service Tag outbound rule operations.""" + + sname = self.create_random_name(prefix='cog', length=12) + rule_name = 'test-st-rule' + + # Print resource details so we can share with service team + import sys + from datetime import datetime, timezone + print(f'\n=== SERVICE TAG TEST RESOURCES ===', file=sys.stderr) + print(f'Subscription: {self.get_subscription_id()}', file=sys.stderr) + print(f'Resource Group: {resource_group}', file=sys.stderr) + print(f'Account Name: {sname}', file=sys.stderr) + print(f'Rule Name: {rule_name}', file=sys.stderr) + print(f'Region: eastus', file=sys.stderr) + print(f'API Version: 2025-10-01-preview', file=sys.stderr) + print(f'Timestamp: {datetime.now(timezone.utc).isoformat()}', file=sys.stderr) + print(f'=================================\n', file=sys.stderr) + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus', + 'rule_name': rule_name + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Create Service Tag outbound rule - this will fail with LRO 404 + self.cmd('az cognitiveservices account managed-network outbound-rule set -n {sname} -g {rg} --rule {rule_name} --type servicetag --destination "Storage" --category Recommended', + checks=[ + self.check('properties.type', 'ServiceTag'), + self.check('properties.category', 'Recommended') + ]) + + @ResourceGroupPreparer() + def test_outbound_rule_bulk_set_yaml(self, resource_group): + """Test bulk outbound rule operations from YAML file.""" + + sname = self.create_random_name(prefix='cog', length=12) + rules_file = os.path.join(self.INPUT_DATA_PATH, 'managed_network_outbound_rules.yaml') + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus', + 'rules_file': rules_file.replace(os.sep, '/') + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Bulk set outbound rules from YAML + ret = self.cmd('az cognitiveservices account managed-network outbound-rule bulk-set -n {sname} -g {rg} --file {rules_file}') + self.assertEqual(ret.exit_code, 0) + + # Verify rules were created (may include system-default rules) + ret = self.cmd('az cognitiveservices account managed-network outbound-rule list -n {sname} -g {rg}', + checks=[ + self.check('length(@) >= `2`', True) + ]) + self.assertEqual(ret.exit_code, 0) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + @ResourceGroupPreparer() + def test_outbound_rule_bulk_set_json(self, resource_group): + """Test bulk outbound rule operations from JSON file.""" + + sname = self.create_random_name(prefix='cog', length=12) + rules_file = os.path.join(self.INPUT_DATA_PATH, 'managed_network_outbound_rules.json') + + self.kwargs.update({ + 'sname': sname, + 'kind': 'AIServices', + 'sku': 'S0', + 'location': 'eastus', + 'rules_file': rules_file.replace(os.sep, '/') + }) + + # Create cognitive services account + self.cmd('az cognitiveservices account create -n {sname} -g {rg} --kind {kind} --sku {sku} -l {location} --yes', + checks=[self.check('name', '{sname}')]) + + # Create managed network + self.cmd('az cognitiveservices account managed-network create -n {sname} -g {rg} --managed-network allow_only_approved_outbound') + + # Bulk set outbound rules from JSON + ret = self.cmd('az cognitiveservices account managed-network outbound-rule bulk-set -n {sname} -g {rg} --file {rules_file}') + self.assertEqual(ret.exit_code, 0) + + # Verify rules were created (may include system-default rules) + ret = self.cmd('az cognitiveservices account managed-network outbound-rule list -n {sname} -g {rg}', + checks=[ + self.check('length(@) >= `2`', True) + ]) + self.assertEqual(ret.exit_code, 0) + + # Delete the cognitive services account + ret = self.cmd('az cognitiveservices account delete -n {sname} -g {rg}') + self.assertEqual(ret.exit_code, 0) + + +if __name__ == '__main__': + unittest.main() diff --git a/src/azure-cli/requirements.py3.Darwin.txt b/src/azure-cli/requirements.py3.Darwin.txt index bc0346fec36..3e4f62874e7 100644 --- a/src/azure-cli/requirements.py3.Darwin.txt +++ b/src/azure-cli/requirements.py3.Darwin.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==7.0.0b1 azure-mgmt-billing==6.0.0 azure-mgmt-botservice==2.0.0b3 azure-mgmt-cdn==12.0.0 -azure-mgmt-cognitiveservices==14.1.0 +azure-mgmt-cognitiveservices==15.0.0b1 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 azure-mgmt-containerregistry==15.1.0b1 diff --git a/src/azure-cli/requirements.py3.Linux.txt b/src/azure-cli/requirements.py3.Linux.txt index ced9e6c5f9d..daf141f64fc 100644 --- a/src/azure-cli/requirements.py3.Linux.txt +++ b/src/azure-cli/requirements.py3.Linux.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==7.0.0b1 azure-mgmt-billing==6.0.0 azure-mgmt-botservice==2.0.0b3 azure-mgmt-cdn==12.0.0 -azure-mgmt-cognitiveservices==14.1.0 +azure-mgmt-cognitiveservices==15.0.0b1 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 azure-mgmt-containerregistry==15.1.0b1 diff --git a/src/azure-cli/requirements.py3.windows.txt b/src/azure-cli/requirements.py3.windows.txt index fdf5afefeaa..d6cabdbde90 100644 --- a/src/azure-cli/requirements.py3.windows.txt +++ b/src/azure-cli/requirements.py3.windows.txt @@ -28,7 +28,7 @@ azure-mgmt-batchai==7.0.0b1 azure-mgmt-billing==6.0.0 azure-mgmt-botservice==2.0.0b3 azure-mgmt-cdn==12.0.0 -azure-mgmt-cognitiveservices==14.1.0 +azure-mgmt-cognitiveservices==15.0.0b1 azure-mgmt-compute==34.1.0 azure-mgmt-containerinstance==10.2.0b1 azure-mgmt-containerregistry==15.1.0b1 diff --git a/src/azure-cli/setup.py b/src/azure-cli/setup.py index fc8b6d736fd..074321e5a23 100644 --- a/src/azure-cli/setup.py +++ b/src/azure-cli/setup.py @@ -74,7 +74,7 @@ 'azure-mgmt-billing==6.0.0', 'azure-mgmt-botservice~=2.0.0b3', 'azure-mgmt-cdn==12.0.0', - 'azure-mgmt-cognitiveservices~=14.1.0', + 'azure-mgmt-cognitiveservices~=15.0.0b1', 'azure-mgmt-compute~=34.1.0', 'azure-mgmt-containerinstance==10.2.0b1', 'azure-mgmt-containerregistry==15.1.0b1', From 2382fd0caf23073dbe5858564ce7f721d774c206 Mon Sep 17 00:00:00 2001 From: M-Hietala <78813398+M-Hietala@users.noreply.github.com> Date: Thu, 2 Apr 2026 16:42:18 -0500 Subject: [PATCH 2/4] additional fixes --- .../cognitiveservices/commands.py | 2 +- .../cognitiveservices/custom.py | 9 +++ .../cognitiveservices/linter_exclusions.yml | 78 ++++++++++++++++++- 3 files changed, 87 insertions(+), 2 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py index 0ee6c8c8a97..e8acc332bf6 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/commands.py @@ -77,7 +77,7 @@ def load_command_table(self, _): g.custom_command('list-kinds', 'list_kinds', client_factory=cf_resource_skus) with self.command_group('cognitiveservices account keys', accounts_type) as g: - g.command('regenerate', 'regenerate_key') + g.custom_command('regenerate', 'regenerate_key') g.command('list', 'list_keys') # deprecating this diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py index 4dfb311ca8b..01e45915118 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -25,6 +25,7 @@ CommitmentPlan, CommitmentPlanProperties, CommitmentPeriod, \ ConnectionPropertiesV2BasicResource, ConnectionUpdateContent, \ Project, ProjectProperties, \ + RegenerateKeyParameters, \ ManagedNetworkSettingsPropertiesBasicResource, ManagedNetworkSettingsProperties, \ ManagedNetworkSettingsEx, \ OutboundRuleBasicResource, FqdnOutboundRule, \ @@ -59,6 +60,14 @@ """ +def regenerate_key(client, resource_group_name, account_name, key_name): + """ + Regenerate a key for an Azure Cognitive Services account. + """ + parameters = RegenerateKeyParameters(key_name=key_name) + return client.regenerate_key(resource_group_name, account_name, parameters) + + def list_resources(client, resource_group_name=None): """ List all Azure Cognitive Services accounts. diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml index 092f17ca78a..e843467bfdf 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml @@ -8,4 +8,80 @@ cognitiveservices account managed-network: parameters: managed_network_name: rule_exclusions: - - missing_parameter_test_coverage \ No newline at end of file + - missing_parameter_test_coverage +cognitiveservices account connection list: + parameters: + category: + rule_exclusions: + - missing_parameter_help + include_all: + rule_exclusions: + - missing_parameter_help + target: + rule_exclusions: + - missing_parameter_help +cognitiveservices account project connection list: + parameters: + category: + rule_exclusions: + - missing_parameter_help + include_all: + rule_exclusions: + - missing_parameter_help + target: + rule_exclusions: + - missing_parameter_help +cognitiveservices usage list: + parameters: + filter: + rule_exclusions: + - missing_parameter_help +cognitiveservices account create: + parameters: + location: + rule_exclusions: + - no_required_location_param +cognitiveservices account project create: + parameters: + location: + rule_exclusions: + - no_required_location_param +cognitiveservices account purge: + parameters: + location: + rule_exclusions: + - no_required_location_param +cognitiveservices account recover: + parameters: + location: + rule_exclusions: + - no_required_location_param +cognitiveservices account show-deleted: + parameters: + location: + rule_exclusions: + - no_required_location_param +cognitiveservices agent logs: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs list: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs set: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs create: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs update: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs show: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs bulk-set: + rule_exclusions: + - missing_command_test_coverage +cognitiveservices agent logs remove: + rule_exclusions: + - missing_command_test_coverage \ No newline at end of file From e40f8d9425c58e23bc1f99001d96170ae21a6cb5 Mon Sep 17 00:00:00 2001 From: M-Hietala <78813398+M-Hietala@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:14:27 -0500 Subject: [PATCH 3/4] updating test recordings and fixing issues due to sdk version update --- .../cognitiveservices/_utils.py | 26 +++--- .../cognitiveservices/custom.py | 8 +- .../managed_network_outbound_rules.json | 0 .../managed_network_outbound_rules.yaml | 0 .../test_account_connections_from_file.yaml | 14 ++-- ...ognitiveservices_account_capabilities.yaml | 8 +- ..._cognitiveservices_account_list_kinds.yaml | 2 +- ...t_cognitiveservices_account_list_skus.yaml | 4 +- ...tiveservices_account_list_skus_legacy.yaml | 6 +- ..._cognitiveservices_account_list_usage.yaml | 6 +- ...ervices_account_public_network_access.yaml | 8 +- .../test_cognitiveservices_aiservices.yaml | 16 ++-- ...est_cognitiveservices_commitment_plan.yaml | 22 ++--- ...gnitiveservices_create_api_properties.yaml | 12 +-- .../test_cognitiveservices_crud.yaml | 16 ++-- .../test_cognitiveservices_custom_domain.yaml | 18 ++--- .../test_cognitiveservices_deployment.yaml | 20 ++--- .../test_cognitiveservices_encryption.yaml | 22 ++--- .../test_cognitiveservices_identity.yaml | 22 ++--- ...eservices_identity_assign_when_create.yaml | 8 +- .../test_cognitiveservices_list_models.yaml | 2 +- .../test_cognitiveservices_list_usages.yaml | 2 +- .../test_cognitiveservices_model.yaml | 8 +- .../test_cognitiveservices_network_rules.yaml | 80 +++++++++---------- ...st_cognitiveservices_private_endpoint.yaml | 10 +-- ...eservices_private_endpoint_connection.yaml | 10 +-- .../test_cognitiveservices_softdelete.yaml | 20 ++--- ..._cognitiveservices_user_owned_storage.yaml | 6 +- .../test_project_connections_from_file.yaml | 22 ++--- .../tests/latest/test_managed_network.py | 6 +- 30 files changed, 205 insertions(+), 199 deletions(-) rename src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/{ => managed_network}/managed_network_outbound_rules.json (100%) rename src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/{ => managed_network}/managed_network_outbound_rules.yaml (100%) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_utils.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_utils.py index c68bda397b8..cc6e6913afe 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_utils.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_utils.py @@ -35,7 +35,7 @@ def snake_to_camel(name): return re.sub(r"(?:^|_)([a-z])", lambda x: x.group(1).upper(), name) -def get_auth_model_connection_properties(connection_category: str, auth_type: str | None, auth_params: Dict[str, Any]): +def get_auth_model_connection_properties(connection_category: str, auth_type: str | None, auth_params: Dict[str, Any]): # pylint: disable=too-many-locals from azure.mgmt.cognitiveservices.models import ( PATAuthTypeConnectionProperties, SASAuthTypeConnectionProperties, @@ -60,32 +60,38 @@ def get_auth_model_connection_properties(connection_category: str, auth_type: st ) # These categories were using None auth type with AzCLI ML connections CAN_USE_NONE_AUTH = [ConnectionCategory.GIT, ConnectionCategory.PYTHON_FEED] + # SDK 15.x renamed some credential params; remap old names from YAML/JSON files + _CREDENTIAL_PARAM_RENAMES = { + 'account_key': 'key', + 'sas_token': 'sas', + } + mapped_params = {_CREDENTIAL_PARAM_RENAMES.get(k, k): v for k, v in auth_params.items()} auth_model = None match snake_to_camel(auth_type): case "PersonalAccessToken" | "Pat": auth_model = PATAuthTypeConnectionProperties( - credentials=ConnectionPersonalAccessToken(**auth_params)) + credentials=ConnectionPersonalAccessToken(**mapped_params)) case "SasToken" | "Sas": auth_model = SASAuthTypeConnectionProperties( - credentials=ConnectionSharedAccessSignature(**auth_params)) + credentials=ConnectionSharedAccessSignature(**mapped_params)) case "UsernamePassword": auth_model = UsernamePasswordAuthTypeConnectionProperties( - credentials=ConnectionUsernamePassword(**auth_params)) + credentials=ConnectionUsernamePassword(**mapped_params)) case "ManagedIdentity": auth_model = ManagedIdentityAuthTypeConnectionProperties( - credentials=ConnectionManagedIdentity(**auth_params)) + credentials=ConnectionManagedIdentity(**mapped_params)) case "ServicePrincipal": auth_model = ServicePrincipalAuthTypeConnectionProperties( - credentials=ConnectionServicePrincipal(**auth_params)) + credentials=ConnectionServicePrincipal(**mapped_params)) case "AccessKey": auth_model = AccessKeyAuthTypeConnectionProperties( - credentials=ConnectionAccessKey(**auth_params)) + credentials=ConnectionAccessKey(**mapped_params)) case "ApiKey": auth_model = ApiKeyAuthConnectionProperties( - credentials=ConnectionApiKey(**auth_params)) + credentials=ConnectionApiKey(**mapped_params)) case "OAuth2": auth_model = OAuth2AuthTypeConnectionProperties( - credentials=ConnectionOAuth2(**auth_params)) + credentials=ConnectionOAuth2(**mapped_params)) case "None": if connection_category in CAN_USE_NONE_AUTH: auth_model = NoneAuthTypeConnectionProperties() @@ -93,7 +99,7 @@ def get_auth_model_connection_properties(connection_category: str, auth_type: st auth_model = AADAuthTypeConnectionProperties() case "AccountKey": auth_model = AccountKeyAuthTypeConnectionProperties( - credentials=ConnectionAccountKey(**auth_params)) + credentials=ConnectionAccountKey(**mapped_params)) case "Aad": auth_model = AADAuthTypeConnectionProperties() diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py index 01e45915118..bac065a86b3 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -174,8 +174,8 @@ def create( properties = CognitiveServicesAccountProperties() if api_properties is not None: - api_properties = CognitiveServicesAccountApiProperties.deserialize( - api_properties + api_properties = CognitiveServicesAccountApiProperties._deserialize( # pylint: disable=protected-access + api_properties, [] ) properties.api_properties = api_properties if custom_domain: @@ -221,8 +221,8 @@ def update( properties = CognitiveServicesAccountProperties() if api_properties is not None: - api_properties = CognitiveServicesAccountApiProperties.deserialize( - api_properties + api_properties = CognitiveServicesAccountApiProperties._deserialize( # pylint: disable=protected-access + api_properties, [] ) properties.api_properties = api_properties if custom_domain: diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network/managed_network_outbound_rules.json similarity index 100% rename from src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.json rename to src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network/managed_network_outbound_rules.json diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network/managed_network_outbound_rules.yaml similarity index 100% rename from src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network_outbound_rules.yaml rename to src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/data/managed_network/managed_network_outbound_rules.yaml diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_account_connections_from_file.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_account_connections_from_file.yaml index 3737f22e77b..6100a98ae95 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_account_connections_from_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_account_connections_from_file.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3062f82-0000-0100-0000-6900d78d0000\"","location":"eastus","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"39e7f16cf67e47219aa9943a7919beb7","dateCreated":"2025-10-28T14:47:41.2305434Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -212,7 +212,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f306b483-0000-0100-0000-6900d7940000\"","location":"eastus","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"39e7f16cf67e47219aa9943a7919beb7","dateCreated":"2025-10-28T14:47:41.2305434Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -304,7 +304,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2026-01-15-preview response: body: string: '{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003","name":"conn000003","type":"Microsoft.CognitiveServices/accounts/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":true,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:48:14.3322712Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:48:14.3322712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}' @@ -364,7 +364,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections?api-version=2025-09-01&includeAll=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections?api-version=2026-01-15-preview&includeAll=false response: body: string: '{"value":[{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003","name":"conn000003","type":"Microsoft.CognitiveServices/accounts/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":true,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:48:14.3322712Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:48:14.3322712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}]}' @@ -422,7 +422,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2026-01-15-preview response: body: string: '{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003","name":"conn000003","type":"Microsoft.CognitiveServices/accounts/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":true,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:48:14.3322712Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:48:14.3322712Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}' @@ -482,7 +482,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/connections/conn000003?api-version=2026-01-15-preview response: body: string: '' @@ -540,7 +540,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_capabilities.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_capabilities.yaml index 096bbd8b9c3..b2ec08bd36f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_capabilities.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_capabilities.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5038cd1-0000-0500-0000-6900d78f0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"b2250399e5df4607ac9dab404029067d","dateCreated":"2025-10-28T14:47:42.9470368Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:41.9012732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:41.9012732Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503edd8-0000-0500-0000-6900d7ae0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"b2250399e5df4607ac9dab404029067d","dateCreated":"2025-10-28T14:47:42.9470368Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:41.9012732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:41.9012732Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503edd8-0000-0500-0000-6900d7ae0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"b2250399e5df4607ac9dab404029067d","dateCreated":"2025-10-28T14:47:42.9470368Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:41.9012732Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:41.9012732Z"}}' @@ -328,7 +328,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_kinds.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_kinds.yaml index 6cb964c972a..78f608a0ab1 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_kinds.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_kinds.yaml @@ -13,7 +13,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2026-01-15-preview response: body: string: '{"value":[{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus.yaml index 4a6d09e4e8d..e8a1d8f2143 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2026-01-15-preview response: body: string: '{"value":[{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' @@ -61,7 +61,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/skus?api-version=2026-01-15-preview response: body: string: '{"value":[{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"C4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"D3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"DC0","tier":"DisconnectedTier","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"E0","tier":"Enterprise","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"F0","tier":"Free","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"ConversationalLanguageUnderstanding","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"LanguageAuthoring","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AIServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"AnomalyDetector","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CognitiveServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ContentSafety","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Prediction","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"CustomVision.Training","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Face","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"FormRecognizer","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"HealthInsights","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Internal.AllInOne","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Knowledge","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"MetricsAdvisor","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["POLANDCENTRAL"],"locationInfo":[{"location":"POLANDCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SOUTHINDIA"],"locationInfo":[{"location":"SOUTHINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SPAINCENTRAL"],"locationInfo":[{"location":"SPAINCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"OpenAI","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"Personalizer","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"QnAMaker.v2","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"SpeechServices","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S0","tier":"Standard","kind":"TranscriptionIntelligence","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ComputerVision","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"ImmersiveReader","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"LUIS.Authoring","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["GLOBAL"],"locationInfo":[{"location":"GLOBAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S1","tier":"Standard","kind":"TextTranslation","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S2","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S3","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CANADAEAST"],"locationInfo":[{"location":"CANADAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["ITALYNORTH"],"locationInfo":[{"location":"ITALYNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIACENTRAL"],"locationInfo":[{"location":"JIOINDIACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["UKWEST"],"locationInfo":[{"location":"UKWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextAnalytics","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"S4","tier":"Standard","kind":"TextTranslation","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V0","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V1","tier":"Standard","kind":"LUIS","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["AUSTRALIAEAST"],"locationInfo":[{"location":"AUSTRALIAEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["BRAZILSOUTH"],"locationInfo":[{"location":"BRAZILSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CANADACENTRAL"],"locationInfo":[{"location":"CANADACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALINDIA"],"locationInfo":[{"location":"CENTRALINDIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUS"],"locationInfo":[{"location":"CENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["CENTRALUSEUAP"],"locationInfo":[{"location":"CENTRALUSEUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTASIA"],"locationInfo":[{"location":"EASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS"],"locationInfo":[{"location":"EASTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2"],"locationInfo":[{"location":"EASTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["EASTUS2EUAP"],"locationInfo":[{"location":"EASTUS2EUAP","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["FRANCECENTRAL"],"locationInfo":[{"location":"FRANCECENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["GERMANYWESTCENTRAL"],"locationInfo":[{"location":"GERMANYWESTCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANEAST"],"locationInfo":[{"location":"JAPANEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JAPANWEST"],"locationInfo":[{"location":"JAPANWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["JIOINDIAWEST"],"locationInfo":[{"location":"JIOINDIAWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["KOREACENTRAL"],"locationInfo":[{"location":"KOREACENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHCENTRALUS"],"locationInfo":[{"location":"NORTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORTHEUROPE"],"locationInfo":[{"location":"NORTHEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["NORWAYEAST"],"locationInfo":[{"location":"NORWAYEAST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["QATARCENTRAL"],"locationInfo":[{"location":"QATARCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHAFRICANORTH"],"locationInfo":[{"location":"SOUTHAFRICANORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHCENTRALUS"],"locationInfo":[{"location":"SOUTHCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SOUTHEASTASIA"],"locationInfo":[{"location":"SOUTHEASTASIA","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWEDENCENTRAL"],"locationInfo":[{"location":"SWEDENCENTRAL","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDNORTH"],"locationInfo":[{"location":"SWITZERLANDNORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["SWITZERLANDWEST"],"locationInfo":[{"location":"SWITZERLANDWEST","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UAENORTH"],"locationInfo":[{"location":"UAENORTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["UKSOUTH"],"locationInfo":[{"location":"UKSOUTH","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTCENTRALUS"],"locationInfo":[{"location":"WESTCENTRALUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTEUROPE"],"locationInfo":[{"location":"WESTEUROPE","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS"],"locationInfo":[{"location":"WESTUS","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS2"],"locationInfo":[{"location":"WESTUS2","zones":[],"zoneDetails":[]}],"restrictions":[]},{"resourceType":"accounts","name":"V3","tier":"Standard","kind":"ContentModerator","locations":["WESTUS3"],"locationInfo":[{"location":"WESTUS3","zones":[],"zoneDetails":[]}],"restrictions":[]}]}' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus_legacy.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus_legacy.yaml index 28e5375ded9..b3d47f918bf 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus_legacy.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_skus_legacy.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50370d0-0000-0500-0000-6900d78b0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"78abaed149224772b4878f618527a9c3","dateCreated":"2025-10-28T14:47:38.9880606Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:38.4788045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:38.4788045Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503e0d7-0000-0500-0000-6900d7aa0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"78abaed149224772b4878f618527a9c3","dateCreated":"2025-10-28T14:47:38.9880606Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:38.4788045Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:38.4788045Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/skus?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/skus?api-version=2026-01-15-preview response: body: string: '{"value":[{"resourceType":"Microsoft.CognitiveServices/accounts","sku":{"name":"F0","tier":"Free"}},{"resourceType":"Microsoft.CognitiveServices/accounts","sku":{"name":"S0","tier":"Standard"}}]}' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_usage.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_usage.yaml index 6da47c6af3a..45b58ebe543 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_usage.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_list_usage.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5039be0-0000-0500-0000-6900d7ce0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"99475bd055834ba4a15d9a37008971ba","dateCreated":"2025-10-28T14:48:46.3638379Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -231,7 +231,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503b1e8-0000-0500-0000-6900d7ef0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"99475bd055834ba4a15d9a37008971ba","dateCreated":"2025-10-28T14:48:46.3638379Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -286,7 +286,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/usages?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/usages?api-version=2026-01-15-preview response: body: string: '{"value":[{"name":{"value":"TextAnalytics.CtAutoTagging","localizedValue":"TextAnalytics.CtAutoTagging"},"status":"Included","currentValue":0.0,"limit":5000.0,"nextResetTime":"0001-01-01T00:00:00Z","quotaPeriod":"30.00:00:00","unit":"Count"},{"name":{"value":"TextAnalytics.CtSaAutoTagging","localizedValue":"TextAnalytics.CtSaAutoTagging"},"status":"Included","currentValue":0.0,"limit":1000.0,"nextResetTime":"0001-01-01T00:00:00Z","quotaPeriod":"30.00:00:00","unit":"Count"},{"name":{"value":"TextAnalytics.CtEvaluation","localizedValue":"TextAnalytics.CtEvaluation"},"status":"Included","currentValue":0.0,"limit":5000.0,"nextResetTime":"0001-01-01T00:00:00Z","quotaPeriod":"30.00:00:00","unit":"Count"},{"name":{"value":"TextAnalytics.CustomHealthcare","localizedValue":"TextAnalytics.CustomHealthcare"},"status":"Included","currentValue":0.0,"limit":10000.0,"nextResetTime":"0001-01-01T00:00:00Z","quotaPeriod":"30.00:00:00","unit":"Count"}]}' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml index 4713ec3be9d..77f6a7e6e3d 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_account_public_network_access.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a8e1-0000-0500-0000-6900d7d20000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"702f052c71b840c4a042fe42dee9e610","dateCreated":"2025-10-28T14:48:50.2975467Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Scenario","value":"Face.LegacyPreview,Face.Legacy,Face.Detection,Face.Verification,Face.Identification"}],"endpoints":{"Face":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:49.6405325Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:49.6405325Z"}}' @@ -176,7 +176,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503cde1-0000-0500-0000-6900d7d30000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"702f052c71b840c4a042fe42dee9e610","dateCreated":"2025-10-28T14:48:50.2975467Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Scenario","value":"Face.LegacyPreview,Face.Legacy,Face.Detection,Face.Verification,Face.Identification"}],"endpoints":{"Face":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:49.6405325Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:49.6405325Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503cde1-0000-0500-0000-6900d7d30000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"Face","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"702f052c71b840c4a042fe42dee9e610","dateCreated":"2025-10-28T14:48:50.2975467Z","callRateLimit":{"rules":[{"key":"face","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"face/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"Scenario","value":"Face.LegacyPreview,Face.Legacy,Face.Detection,Face.Verification,Face.Identification"}],"endpoints":{"Face":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:49.6405325Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:49.6405325Z"}}' @@ -278,7 +278,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_aiservices.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_aiservices.yaml index eadfbb568fe..3f8a26f555c 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_aiservices.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_aiservices.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002","name":"csclitest_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3061d82-0000-0100-0000-6900d78d0000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"f06c494c247b4539868b50b9de1d18a5","dateCreated":"2025-10-28T14:47:41.0240305Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -212,7 +212,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002","name":"csclitest_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3064083-0000-0100-0000-6900d7920000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"f06c494c247b4539868b50b9de1d18a5","dateCreated":"2025-10-28T14:47:41.0240305Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -298,7 +298,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002","name":"csclitest_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3064083-0000-0100-0000-6900d7920000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"f06c494c247b4539868b50b9de1d18a5","dateCreated":"2025-10-28T14:47:41.0240305Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -386,7 +386,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest_000002?api-version=2026-01-15-preview response: body: string: '' @@ -441,7 +441,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003","name":"csclitest2_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"f306a98b-0000-0100-0000-6900d7b40000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"471e346d5ad941e7985161443e55c8ac","dateCreated":"2025-10-28T14:48:19.7529686Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -634,7 +634,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003","name":"csclitest2_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3061e8d-0000-0100-0000-6900d7ba0000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"471e346d5ad941e7985161443e55c8ac","dateCreated":"2025-10-28T14:48:19.7529686Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -721,7 +721,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003","name":"csclitest2_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3061e8d-0000-0100-0000-6900d7ba0000\"","location":"EASTUS","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://eastus.api.cognitive.microsoft.com/","internalId":"471e346d5ad941e7985161443e55c8ac","dateCreated":"2025-10-28T14:48:19.7529686Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -810,7 +810,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/csclitest2_000003?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_commitment_plan.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_commitment_plan.yaml index 0fb78254965..61b8c081331 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_commitment_plan.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_commitment_plan.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50381d0-0000-0500-0000-6900d78b0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"f105e4e3d31c4a889a6cdce0e3145cd2","dateCreated":"2025-10-28T14:47:39.1007943Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -231,7 +231,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031dd8-0000-0500-0000-6900d7ab0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"f105e4e3d31c4a889a6cdce0e3145cd2","dateCreated":"2025-10-28T14:47:39.1007943Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -286,7 +286,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031dd8-0000-0500-0000-6900d7ab0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"f105e4e3d31c4a889a6cdce0e3145cd2","dateCreated":"2025-10-28T14:47:39.1007943Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -341,7 +341,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/commitmentTiers?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/centraluseuap/commitmentTiers?api-version=2026-01-15-preview response: body: string: '{"value":[{"kind":"ComputerVision","skuName":"S1","hostingModel":"Web","planType":"Read","tier":"T1","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"S1","hostingModel":"Web","planType":"Read","tier":"T2","quota":{"quantity":2000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"S1","hostingModel":"Web","planType":"Read","tier":"T3","quota":{"quantity":8000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Read","tier":"T1","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Read","tier":"T2","quota":{"quantity":2000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Read","tier":"T3","quota":{"quantity":8000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T1","maxCount":30,"quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T2","maxCount":30,"quota":{"quantity":2000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T3","maxCount":30,"quota":{"quantity":8000000,"unit":"Transaction"},"cost":{}},{"kind":"ComputerVision","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T4","maxCount":30,"quota":{"quantity":16000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"TA","tier":"T1","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"TA","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"TA","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"TA","tier":"T4","quota":{"quantity":25000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"TA","tier":"T1","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"TA","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"TA","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"TA","tier":"T4","quota":{"quantity":25000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"Summarization","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"Summarization","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"Summarization","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"Summarization","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"CLU","tier":"T1","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"CLU","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"CLU","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"Web","planType":"CLU","tier":"T4","quota":{"quantity":25000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"CLU","tier":"T1","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"CLU","tier":"T2","quota":{"quantity":3000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"CLU","tier":"T3","quota":{"quantity":10000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"S","hostingModel":"ConnectedContainer","planType":"CLU","tier":"T4","quota":{"quantity":25000000,"unit":"Transaction"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"TA","tier":"T1","maxCount":30,"quota":{"quantity":1000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"TA","tier":"T2","maxCount":30,"quota":{"quantity":2500000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"TA","tier":"T3","maxCount":30,"quota":{"quantity":10000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"TA","tier":"T4","maxCount":30,"quota":{"quantity":25000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Summarization","tier":"T1","maxCount":30,"quota":{"quantity":1000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Summarization","tier":"T2","maxCount":30,"quota":{"quantity":3000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Summarization","tier":"T3","maxCount":30,"quota":{"quantity":10000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CLU","tier":"T1","maxCount":30,"quota":{"quantity":1000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CLU","tier":"T2","maxCount":30,"quota":{"quantity":3000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CLU","tier":"T3","maxCount":30,"quota":{"quantity":10000000,"unit":"TextRecords"},"cost":{}},{"kind":"TextAnalytics","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CLU","tier":"T4","maxCount":30,"quota":{"quantity":25000000,"unit":"TextRecords"},"cost":{}},{"kind":"LUIS","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"LanguageTransaction","tier":"T1","maxCount":30,"quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"LUIS","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"LanguageTransaction","tier":"T2","maxCount":30,"quota":{"quantity":5000000,"unit":"Transaction"},"cost":{}},{"kind":"LUIS","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"LanguageTransaction","tier":"T3","maxCount":30,"quota":{"quantity":25000000,"unit":"Transaction"},"cost":{}},{"kind":"LUIS","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"LanguageTransaction","tier":"T4","maxCount":30,"quota":{"quantity":50000000,"unit":"Transaction"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"STT","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"STT","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"STT","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"STT","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"STT","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"STT","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"STT","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"STT","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"NTTS","tier":"T1","quota":{"quantity":80000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"NTTS","tier":"T2","quota":{"quantity":400000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"NTTS","tier":"T3","quota":{"quantity":2000000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"NTTS","tier":"T4","quota":{"quantity":4000000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"NTTS","tier":"T1","quota":{"quantity":80000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"NTTS","tier":"T2","quota":{"quantity":400000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"NTTS","tier":"T3","quota":{"quantity":2000000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"NTTS","tier":"T4","quota":{"quantity":4000000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"CustomSTT","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"CustomSTT","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"CustomSTT","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"CustomSTT","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomSTT","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomSTT","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomSTT","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomSTT","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"AddOn","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"AddOn","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"AddOn","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"Web","planType":"AddOn","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"AddOn","tier":"T1","quota":{"quantity":7200000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"AddOn","tier":"T2","quota":{"quantity":36000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"AddOn","tier":"T3","quota":{"quantity":180000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"S0","hostingModel":"ConnectedContainer","planType":"AddOn","tier":"T4","quota":{"quantity":360000000,"unit":"Second"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"AddOn","tier":"T1","maxCount":30,"quota":{"quantity":2000,"unit":"Hour"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"AddOn","tier":"T4","maxCount":30,"quota":{"quantity":100000,"unit":"Hour"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"STT","tier":"T1","maxCount":30,"quota":{"quantity":2000,"unit":"Hour"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"STT","tier":"T4","maxCount":30,"quota":{"quantity":100000,"unit":"Hour"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CustomSTT","tier":"T1","maxCount":30,"quota":{"quantity":2000,"unit":"Hour"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"NTTS","tier":"T1","maxCount":30,"quota":{"quantity":80000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"NTTS","tier":"T2","maxCount":30,"quota":{"quantity":400000000,"unit":"Characters"},"cost":{}},{"kind":"SpeechServices","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"NTTS","tier":"T3","maxCount":30,"quota":{"quantity":2000000000,"unit":"Characters"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"CustomInvoice","tier":"T1","quota":{"quantity":20000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"CustomInvoice","tier":"T2","quota":{"quantity":100000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"CustomInvoice","tier":"T3","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"CustomInvoice","tier":"T4","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomInvoice","tier":"T1","quota":{"quantity":20000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomInvoice","tier":"T2","quota":{"quantity":100000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomInvoice","tier":"T3","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"CustomInvoice","tier":"T4","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"PreBuilt","tier":"T1","quota":{"quantity":20000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"PreBuilt","tier":"T2","quota":{"quantity":100000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"PreBuilt","tier":"T3","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"PreBuilt","tier":"T4","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"PreBuilt","tier":"T1","quota":{"quantity":20000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"PreBuilt","tier":"T2","quota":{"quantity":100000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"PreBuilt","tier":"T3","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"PreBuilt","tier":"T4","quota":{"quantity":1000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"ReadCT","tier":"T1","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"ReadCT","tier":"T2","quota":{"quantity":2000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"ReadCT","tier":"T3","quota":{"quantity":8000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"Web","planType":"ReadCT","tier":"T4","quota":{"quantity":16000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"ReadCT","tier":"T1","quota":{"quantity":500000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"ReadCT","tier":"T2","quota":{"quantity":2000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"ReadCT","tier":"T3","quota":{"quantity":8000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"S0","hostingModel":"ConnectedContainer","planType":"ReadCT","tier":"T4","quota":{"quantity":16000000,"unit":"Transaction"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CustomInvoice","tier":"T1","maxCount":30,"quota":{"quantity":20000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CustomInvoice","tier":"T2","maxCount":30,"quota":{"quantity":100000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CustomInvoice","tier":"T3","maxCount":30,"quota":{"quantity":500000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"CustomInvoice","tier":"T4","maxCount":30,"quota":{"quantity":1000000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T1","maxCount":30,"quota":{"quantity":500000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T2","maxCount":30,"quota":{"quantity":2000000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T3","maxCount":30,"quota":{"quantity":8000000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Read","tier":"T4","maxCount":30,"quota":{"quantity":16000000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"PreBuilt","tier":"T1","maxCount":30,"quota":{"quantity":20000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"PreBuilt","tier":"T2","maxCount":30,"quota":{"quantity":100000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"PreBuilt","tier":"T3","maxCount":30,"quota":{"quantity":500000,"unit":"Pages"},"cost":{}},{"kind":"FormRecognizer","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"PreBuilt","tier":"T4","maxCount":30,"quota":{"quantity":1000000,"unit":"Pages"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"Web","planType":"Characters","tier":"T1","quota":{"quantity":250000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"Web","planType":"Characters","tier":"T2","quota":{"quantity":1000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"Web","planType":"Characters","tier":"T3","quota":{"quantity":4000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"Web","planType":"Characters","tier":"T4","quota":{"quantity":10000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Characters","tier":"T1","quota":{"quantity":250000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Characters","tier":"T2","quota":{"quantity":1000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Characters","tier":"T3","quota":{"quantity":4000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"S1","hostingModel":"ConnectedContainer","planType":"Characters","tier":"T4","quota":{"quantity":10000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Characters","tier":"T1","maxCount":30,"quota":{"quantity":250000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Characters","tier":"T2","maxCount":30,"quota":{"quantity":1000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Characters","tier":"T3","maxCount":30,"quota":{"quantity":4000000000,"unit":"Transaction"},"cost":{}},{"kind":"TextTranslation","skuName":"DC0","hostingModel":"DisconnectedContainer","planType":"Characters","tier":"T4","maxCount":30,"quota":{"quantity":10000000000,"unit":"Transaction"},"cost":{}},{"kind":"OpenAI","skuName":"S0","hostingModel":"ProvisionedWeb","planType":"Provisioned","tier":"Month","quota":{"quantity":0,"unit":"Provisioned @@ -393,7 +393,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2026-01-15-preview response: body: string: '{"value":[]}' @@ -449,7 +449,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentplans/plan","type":"Microsoft.CognitiveServices/accounts/commitmentplans","name":"plan","properties":{"hostingModel":"Web","planType":"TA","current":{"tier":"T1","startDate":"2025-10-28T00:00:00Z","endDate":"2025-11-01T00:00:00Z","quota":{"quantity":129032,"unit":"Transaction"}},"autoRenew":false,"next":{"tier":"T2","startDate":"2025-11-01T00:00:00Z","endDate":"2025-12-01T00:00:00Z","quota":{"quantity":3000000,"unit":"Transaction"}}},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:43.546456Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:43.546456Z"},"etag":"\"f2677dc4-85f0-429e-a855-085792bd88b3\""}' @@ -503,7 +503,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentplans/plan","type":"Microsoft.CognitiveServices/accounts/commitmentplans","name":"plan","properties":{"hostingModel":"Web","planType":"TA","current":{"tier":"T1","startDate":"2025-10-28T00:00:00Z","endDate":"2025-11-01T00:00:00Z","quota":{"quantity":129032,"unit":"Transaction"}},"autoRenew":false,"next":{"tier":"T2","startDate":"2025-11-01T00:00:00Z","endDate":"2025-12-01T00:00:00Z","quota":{"quantity":3000000,"unit":"Transaction"}}},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:43.546456Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:43.546456Z"},"etag":"\"f2677dc4-85f0-429e-a855-085792bd88b3\""}]}' @@ -553,7 +553,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentplans/plan","type":"Microsoft.CognitiveServices/accounts/commitmentplans","name":"plan","properties":{"hostingModel":"Web","planType":"TA","current":{"tier":"T1","startDate":"2025-10-28T00:00:00Z","endDate":"2025-11-01T00:00:00Z","quota":{"quantity":129032,"unit":"Transaction"}},"autoRenew":false,"next":{"tier":"T2","startDate":"2025-11-01T00:00:00Z","endDate":"2025-12-01T00:00:00Z","quota":{"quantity":3000000,"unit":"Transaction"}}},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:43.546456Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:43.546456Z"},"etag":"\"f2677dc4-85f0-429e-a855-085792bd88b3\""}' @@ -607,7 +607,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans/plan?api-version=2026-01-15-preview response: body: string: '' @@ -657,7 +657,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/commitmentPlans?api-version=2026-01-15-preview response: body: string: '{"value":[]}' @@ -709,7 +709,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_create_api_properties.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_create_api_properties.yaml index 2c35505d941..1a3c012710f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_create_api_properties.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_create_api_properties.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50394e3-0000-0500-0000-6900d7da0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"QnAMaker.v2","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"ad927f41e22c4b53b203108f47c4989d","dateCreated":"2025-10-28T14:48:58.0001839Z","apiProperties":{"qnaAzureSearchEndpointId":"https://cs-cli-test-qnamaker.azurewebsites.net","qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Cloud","value":"QuestionAnswer.AllApis"}],"endpoints":{"QnAMaker":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:57.499532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:57.499532Z"}}' @@ -176,7 +176,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031deb-0000-0500-0000-6900d7f80000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"QnAMaker.v2","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"ad927f41e22c4b53b203108f47c4989d","dateCreated":"2025-10-28T14:48:58.0001839Z","apiProperties":{"qnaAzureSearchEndpointId":"https://cs-cli-test-qnamaker.azurewebsites.net","qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Cloud","value":"QuestionAnswer.AllApis"}],"endpoints":{"QnAMaker":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:57.499532Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:57.499532Z"}}' @@ -228,7 +228,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -283,7 +283,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50354ec-0000-0500-0000-6900d7fe0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"QnAMaker.v2","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"6ce4167138564e26b52b5c2303ef633b","dateCreated":"2025-10-28T14:49:33.6607969Z","apiProperties":{"qnaAzureSearchEndpointId":"https://cs-cli-test-qnamaker.azurewebsites.net","qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Cloud","value":"QuestionAnswer.AllApis"}],"endpoints":{"QnAMaker":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:33.1453151Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:33.1453151Z"}}' @@ -489,7 +489,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503d3f4-0000-0500-0000-6900d81e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"QnAMaker.v2","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"6ce4167138564e26b52b5c2303ef633b","dateCreated":"2025-10-28T14:49:33.6607969Z","apiProperties":{"qnaAzureSearchEndpointId":"https://cs-cli-test-qnamaker.azurewebsites.net","qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"default","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Cloud","value":"QuestionAnswer.AllApis"}],"endpoints":{"QnAMaker":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:33.1453151Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:33.1453151Z"}}' @@ -541,7 +541,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_crud.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_crud.yaml index 624b4abe81e..98c70cc0887 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_crud.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_crud.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503fcd1-0000-0500-0000-6900d7910000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"6f1fd8c55b444375a3ebbf5eb8aba56f","dateCreated":"2025-10-28T14:47:45.0396979Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:44.0005605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:44.0005605Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50373d9-0000-0500-0000-6900d7b10000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"6f1fd8c55b444375a3ebbf5eb8aba56f","dateCreated":"2025-10-28T14:47:45.0396979Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:44.0005605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:44.0005605Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50373d9-0000-0500-0000-6900d7b10000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"6f1fd8c55b444375a3ebbf5eb8aba56f","dateCreated":"2025-10-28T14:47:45.0396979Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:44.0005605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:44.0005605Z"}}' @@ -331,7 +331,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5033de1-0000-0500-0000-6900d7d10000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"6f1fd8c55b444375a3ebbf5eb8aba56f","dateCreated":"2025-10-28T14:47:45.0396979Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"}},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:44.0005605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:48.9388217Z"}}' @@ -387,7 +387,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/listKeys?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/listKeys?api-version=2026-01-15-preview response: body: string: '{"key1":"************************************************************************************","key2":"************************************************************************************"}' @@ -443,7 +443,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/regenerateKey?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/regenerateKey?api-version=2026-01-15-preview response: body: string: '{"key1":"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++","key2":"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"}' @@ -495,7 +495,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a2e1-0000-0500-0000-6900d7d20000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","tags":{"tagname000003":"tagvalue000004"},"properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"6f1fd8c55b444375a3ebbf5eb8aba56f","dateCreated":"2025-10-28T14:47:45.0396979Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"}},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:44.0005605Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:48.9388217Z"}}]}' @@ -547,7 +547,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_custom_domain.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_custom_domain.yaml index fc922581ead..f6daaa1afc5 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_custom_domain.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_custom_domain.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50349e2-0000-0500-0000-6900d7d40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"8836011800f845a48297ac0745985156","dateCreated":"2025-10-28T14:48:51.3814778Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:50.1584747Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:50.1584747Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503e9e9-0000-0500-0000-6900d7f40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"8836011800f845a48297ac0745985156","dateCreated":"2025-10-28T14:48:51.3814778Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:50.1584747Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:50.1584747Z"}}' @@ -278,7 +278,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -333,7 +333,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004","name":"cs_cli_test_000004","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50397f2-0000-0500-0000-6900d8160000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"969d99d6308c4eeea5800e1ffea95aa1","dateCreated":"2025-10-28T14:49:58.4301655Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:57.7102133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:57.7102133Z"}}' @@ -539,7 +539,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004","name":"cs_cli_test_000004","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50379fb-0000-0500-0000-6900d8360000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"969d99d6308c4eeea5800e1ffea95aa1","dateCreated":"2025-10-28T14:49:58.4301655Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:57.7102133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:57.7102133Z"}}' @@ -589,7 +589,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004","name":"cs_cli_test_000004","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50379fb-0000-0500-0000-6900d8360000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"969d99d6308c4eeea5800e1ffea95aa1","dateCreated":"2025-10-28T14:49:58.4301655Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:57.7102133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:57.7102133Z"}}' @@ -643,7 +643,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004","name":"cs_cli_test_000004","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6032d03-0000-0500-0000-6900d8560000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"969d99d6308c4eeea5800e1ffea95aa1","dateCreated":"2025-10-28T14:49:58.4301655Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000005","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000005.cognitiveservices.azure.com/","Container":"https://csclitest000005.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:57.7102133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:02.4391292Z"}}' @@ -851,7 +851,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004","name":"cs_cli_test_000004","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603c20b-0000-0500-0000-6900d8790000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"969d99d6308c4eeea5800e1ffea95aa1","dateCreated":"2025-10-28T14:49:58.4301655Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000005","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000005.cognitiveservices.azure.com/","Container":"https://csclitest000005.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:57.7102133Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:02.4391292Z"}}' @@ -903,7 +903,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000004?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_deployment.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_deployment.yaml index 7062523ae17..74a313feae4 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_deployment.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_deployment.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"5c02a25b-0000-2300-0000-6900d7b60000\"","location":"JAPANEAST","sku":{"name":"S0"},"kind":"OpenAI","properties":{"endpoint":"https://japaneast.api.cognitive.microsoft.com/","internalId":"cf714d22a3c34a0ea5f5ed6bdde25ee1","dateCreated":"2025-10-28T14:48:21.7749336Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"raiLevelOverride"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer"},{"name":"NetworkSecurityPerimeter"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"}],"endpoints":{"OpenAI @@ -134,7 +134,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"5c02bc5b-0000-2300-0000-6900d7b60000\"","location":"JAPANEAST","sku":{"name":"S0"},"kind":"OpenAI","properties":{"endpoint":"https://japaneast.api.cognitive.microsoft.com/","internalId":"cf714d22a3c34a0ea5f5ed6bdde25ee1","dateCreated":"2025-10-28T14:48:21.7749336Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"raiLevelOverride"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer"},{"name":"NetworkSecurityPerimeter"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"}],"endpoints":{"OpenAI @@ -192,7 +192,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"5c02bc5b-0000-2300-0000-6900d7b60000\"","location":"JAPANEAST","sku":{"name":"S0"},"kind":"OpenAI","properties":{"endpoint":"https://japaneast.api.cognitive.microsoft.com/","internalId":"cf714d22a3c34a0ea5f5ed6bdde25ee1","dateCreated":"2025-10-28T14:48:21.7749336Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"raiLevelOverride"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer"},{"name":"NetworkSecurityPerimeter"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"}],"endpoints":{"OpenAI @@ -250,7 +250,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2026-01-15-preview response: body: string: '{"value":[]}' @@ -306,7 +306,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/dpy","type":"Microsoft.CognitiveServices/accounts/deployments","name":"dpy","sku":{"name":"Standard","capacity":1},"properties":{"model":{"format":"OpenAI","name":"gpt-35-turbo","version":"0125"},"versionUpgradeOption":"OnceNewDefaultVersionAvailable","currentCapacity":1,"capabilities":{"completion":"true","maxContextToken":"16385","maxOutputToken":"4096","chatCompletion":"true","assistants":"true"},"provisioningState":"Succeeded","rateLimits":[{"key":"request","renewalPeriod":10,"count":1},{"key":"token","renewalPeriod":60,"count":1000}]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:25.3936328Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:25.3936328Z"},"etag":"\"21313ed5-3ec9-497d-ad67-93abe1fbf1bd\""}' @@ -360,7 +360,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/dpy","type":"Microsoft.CognitiveServices/accounts/deployments","name":"dpy","sku":{"name":"Standard","capacity":1},"properties":{"model":{"format":"OpenAI","name":"gpt-35-turbo","version":"0125"},"versionUpgradeOption":"OnceNewDefaultVersionAvailable","currentCapacity":1,"capabilities":{"completion":"true","maxContextToken":"16385","maxOutputToken":"4096","chatCompletion":"true","assistants":"true"},"provisioningState":"Succeeded","rateLimits":[{"key":"request","renewalPeriod":10,"count":1},{"key":"token","renewalPeriod":60,"count":1000}]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:25.3936328Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:25.3936328Z"},"etag":"\"21313ed5-3ec9-497d-ad67-93abe1fbf1bd\""}]}' @@ -410,7 +410,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/dpy","type":"Microsoft.CognitiveServices/accounts/deployments","name":"dpy","sku":{"name":"Standard","capacity":1},"properties":{"model":{"format":"OpenAI","name":"gpt-35-turbo","version":"0125"},"versionUpgradeOption":"OnceNewDefaultVersionAvailable","currentCapacity":1,"capabilities":{"completion":"true","maxContextToken":"16385","maxOutputToken":"4096","chatCompletion":"true","assistants":"true"},"provisioningState":"Succeeded","rateLimits":[{"key":"request","renewalPeriod":10,"count":1},{"key":"token","renewalPeriod":60,"count":1000}]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:25.3936328Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:25.3936328Z"},"etag":"\"21313ed5-3ec9-497d-ad67-93abe1fbf1bd\""}' @@ -464,7 +464,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments/mock-deployment?api-version=2026-01-15-preview response: body: string: '' @@ -514,7 +514,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/deployments?api-version=2026-01-15-preview response: body: string: '{"value":[]}' @@ -566,7 +566,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_encryption.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_encryption.yaml index a4ca5d2a523..d10f5ad1fc2 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_encryption.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_encryption.yaml @@ -21,7 +21,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503dfd0-0000-0500-0000-6900d78c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"90ef42e77efb4f3a99e9fc8bec233ce2","dateCreated":"2025-10-28T14:47:40.4393001Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"8ad54167-3847-426f-adf1-a6136e02766d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:38.6312127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:38.6312127Z"}}' @@ -227,7 +227,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50333d8-0000-0500-0000-6900d7ac0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"90ef42e77efb4f3a99e9fc8bec233ce2","dateCreated":"2025-10-28T14:47:40.4393001Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"8ad54167-3847-426f-adf1-a6136e02766d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:38.6312127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:38.6312127Z"}}' @@ -277,7 +277,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50333d8-0000-0500-0000-6900d7ac0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"90ef42e77efb4f3a99e9fc8bec233ce2","dateCreated":"2025-10-28T14:47:40.4393001Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"8ad54167-3847-426f-adf1-a6136e02766d","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:38.6312127Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:38.6312127Z"}}' @@ -329,7 +329,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -384,7 +384,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503cbe0-0000-0500-0000-6900d7cf0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:45.7234757Z"}}' @@ -590,7 +590,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5037be8-0000-0500-0000-6900d7ee0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:45.7234757Z"}}' @@ -640,7 +640,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5037be8-0000-0500-0000-6900d7ee0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:45.7234757Z"}}' @@ -694,7 +694,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5035af0-0000-0500-0000-6900d80e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:50.657225Z"}}' @@ -902,7 +902,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5030df9-0000-0500-0000-6900d82e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:50.657225Z"}}' @@ -952,7 +952,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5030df9-0000-0500-0000-6900d82e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"2383375316fc4414b16445375b7b18c9","dateCreated":"2025-10-28T14:48:47.0960565Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"encryption":{"keySource":"Microsoft.CognitiveServices"},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"c7da3f7d-f92d-4238-840a-c8ff78f790b7","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:45.7234757Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:50.657225Z"}}' @@ -1004,7 +1004,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity.yaml index c0e2f04a18f..7dd5b4f6acd 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5038ed2-0000-0500-0000-6900d7930000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:46.8601816Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503dcd9-0000-0500-0000-6900d7b20000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:46.8601816Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503dcd9-0000-0500-0000-6900d7b20000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:46.8601816Z"}}' @@ -326,7 +326,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503dcd9-0000-0500-0000-6900d7b20000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:47:46.8601816Z"}}' @@ -380,7 +380,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5030ae2-0000-0500-0000-6900d7d40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"fb4eb9ca-994d-407e-8451-71190e6e9b8c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:51.9593239Z"}}' @@ -588,7 +588,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a4e9-0000-0500-0000-6900d7f30000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"fb4eb9ca-994d-407e-8451-71190e6e9b8c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:51.9593239Z"}}' @@ -638,7 +638,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a4e9-0000-0500-0000-6900d7f30000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"principalId":"fb4eb9ca-994d-407e-8451-71190e6e9b8c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:51.9593239Z"}}' @@ -692,7 +692,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603bd1d-0000-0500-0000-6900d8c70000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Accepted","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"type":"None"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:55.7276722Z"}}' @@ -900,7 +900,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d724-0000-0500-0000-6900d8e60000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"type":"None"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:55.7276722Z"}}' @@ -950,7 +950,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d724-0000-0500-0000-6900d8e60000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","provisioningState":"Succeeded","internalId":"daae75e3bbd7467694bd38c13f70a501","dateCreated":"2025-10-28T14:47:47.3277738Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"identity":{"type":"None"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:47:46.8601816Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:55.7276722Z"}}' @@ -1002,7 +1002,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity_assign_when_create.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity_assign_when_create.yaml index a11e94bd184..b448b3d85f1 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity_assign_when_create.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_identity_assign_when_create.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603a448-0000-0500-0000-6900d9850000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"93e7e1d435e74f70a42838e1cfd65387","dateCreated":"2025-10-28T14:56:05.4763033Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Creating"},"identity":{"principalId":"29fd1ec4-0d25-4d37-b787-6bb6a25ff186","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:56:03.5950407Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:03.5950407Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f44e-0000-0500-0000-6900d9a50000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"93e7e1d435e74f70a42838e1cfd65387","dateCreated":"2025-10-28T14:56:05.4763033Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"29fd1ec4-0d25-4d37-b787-6bb6a25ff186","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:56:03.5950407Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:03.5950407Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f44e-0000-0500-0000-6900d9a50000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://southcentralus.api.cognitive.microsoft.com/","internalId":"93e7e1d435e74f70a42838e1cfd65387","dateCreated":"2025-10-28T14:56:05.4763033Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://southcentralus.api.cognitive.microsoft.com/","Container":"https://southcentralus.api.cognitive.microsoft.com/"},"provisioningState":"Succeeded"},"identity":{"principalId":"29fd1ec4-0d25-4d37-b787-6bb6a25ff186","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","type":"SystemAssigned"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:56:03.5950407Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:03.5950407Z"}}' @@ -328,7 +328,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_models.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_models.yaml index 0958e07df08..dd52b65cc00 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_models.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_models.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/models?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/models?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/WestEurope/models/OpenAI.dall-e-3.3.0","type":"Microsoft.CognitiveServices/locations/models","name":"OpenAI.dall-e-3.3.0","location":"WestEurope","kind":"OpenAI","skuName":"S0","model":{"format":"OpenAI","name":"dall-e-3","version":"3.0","isDefaultVersion":true,"skus":[{"name":"Provisioned","usageName":"OpenAI.Provisioned.Dalle","capacity":{"minimum":100,"maximum":60000,"step":100,"default":300},"costs":[{"name":"Hosting","meterId":"6e423a39-5bb4-58e1-8d9d-6b9f5596bc0e","unit":"1 diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_usages.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_usages.yaml index 383b2f328a3..047a7107030 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_usages.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_list_usages.yaml @@ -15,7 +15,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/usages?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westeurope/usages?api-version=2026-01-15-preview response: body: string: '{"value":[{"name":{"value":"OpenAI.GlobalProvisionedManaged","localizedValue":"Global diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_model.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_model.yaml index 5b1c1efff00..4c0dd150fac 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_model.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_model.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"0101e54b-0000-0d00-0000-6900d7c40000\"","location":"WESTEUROPE","sku":{"name":"S0"},"kind":"OpenAI","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"8cc8f886be3d477fb440434e68deff8f","dateCreated":"2025-10-28T14:48:35.6634298Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"raiLevelOverride"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer"},{"name":"NetworkSecurityPerimeter"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"}],"endpoints":{"OpenAI @@ -184,7 +184,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"01017f4c-0000-0d00-0000-6900d7c50000\"","location":"WESTEUROPE","sku":{"name":"S0"},"kind":"OpenAI","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"8cc8f886be3d477fb440434e68deff8f","dateCreated":"2025-10-28T14:48:35.6634298Z","apiProperties":{},"callRateLimit":{"rules":[{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"raiLevelOverride"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer"},{"name":"NetworkSecurityPerimeter"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"}],"endpoints":{"OpenAI @@ -242,7 +242,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/models?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/models?api-version=2026-01-15-preview response: body: string: '{"value":[{"format":"OpenAI","name":"dall-e-3","version":"3.0","isDefaultVersion":true,"skus":[{"name":"Provisioned","usageName":"OpenAI.Provisioned.Dalle","capacity":{"minimum":100,"maximum":60000,"step":100,"default":300},"costs":[{"name":"Hosting","meterId":"6e423a39-5bb4-58e1-8d9d-6b9f5596bc0e","unit":"1 @@ -675,7 +675,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_network_rules.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_network_rules.yaml index 827e2b82bef..b33ff3e45a1 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_network_rules.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_network_rules.yaml @@ -603,7 +603,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50325ec-0000-0500-0000-6900d7fd0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:29.8595181Z"}}' @@ -809,7 +809,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031ff4-0000-0500-0000-6900d81c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:29.8595181Z"}}' @@ -859,7 +859,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031ff4-0000-0500-0000-6900d81c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:29.8595181Z"}}' @@ -909,7 +909,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5031ff4-0000-0500-0000-6900d81c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:29.8595181Z"}}' @@ -964,7 +964,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50325fd-0000-0500-0000-6900d83d0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:37.4149869Z"}}' @@ -1172,7 +1172,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f604-0000-0500-0000-6900d85e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:37.4149869Z"}}' @@ -1222,7 +1222,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f604-0000-0500-0000-6900d85e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:37.4149869Z"}}' @@ -1272,7 +1272,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f604-0000-0500-0000-6900d85e0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:37.4149869Z"}}' @@ -1327,7 +1327,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603ac0c-0000-0500-0000-6900d87d0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:41.1755188Z"}}' @@ -1535,7 +1535,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f513-0000-0500-0000-6900d89c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:41.1755188Z"}}' @@ -1585,7 +1585,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f513-0000-0500-0000-6900d89c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:41.1755188Z"}}' @@ -1635,7 +1635,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f513-0000-0500-0000-6900d89c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:51:41.1755188Z"}}' @@ -1691,7 +1691,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603851b-0000-0500-0000-6900d8bd0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:45.2515403Z"}}' @@ -1899,7 +1899,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6031d25-0000-0500-0000-6900d8e70000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:45.2515403Z"}}' @@ -1949,7 +1949,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6031d25-0000-0500-0000-6900d8e70000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:45.2515403Z"}}' @@ -1999,7 +1999,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6031d25-0000-0500-0000-6900d8e70000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:52:45.2515403Z"}}' @@ -2056,7 +2056,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603162d-0000-0500-0000-6900d9080000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:54:00.3684495Z"}}' @@ -2264,7 +2264,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603c736-0000-0500-0000-6900d9330000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:54:00.3684495Z"}}' @@ -2314,7 +2314,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603c736-0000-0500-0000-6900d9330000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:54:00.3684495Z"}}' @@ -2364,7 +2364,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603c736-0000-0500-0000-6900d9330000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"200.0.0.1"},{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:54:00.3684495Z"}}' @@ -2421,7 +2421,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603da3d-0000-0500-0000-6900d9530000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:55:15.6074349Z"}}' @@ -2629,7 +2629,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f944-0000-0500-0000-6900d9740000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:55:15.6074349Z"}}' @@ -2679,7 +2679,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f944-0000-0500-0000-6900d9740000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:55:15.6074349Z"}}' @@ -2729,7 +2729,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603f944-0000-0500-0000-6900d9740000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[{"value":"100.0.0.0/24"}]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:55:15.6074349Z"}}' @@ -2786,7 +2786,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603774b-0000-0500-0000-6900d9940000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:20.315452Z"}}' @@ -2994,7 +2994,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6030352-0000-0500-0000-6900d9b40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:20.315452Z"}}' @@ -3044,7 +3044,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6030352-0000-0500-0000-6900d9b40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:20.315452Z"}}' @@ -3094,7 +3094,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6030352-0000-0500-0000-6900d9b40000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/default","ignoreMissingVnetServiceEndpoint":true},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:56:20.315452Z"}}' @@ -3150,7 +3150,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6033659-0000-0500-0000-6900d9d50000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:57:25.0071064Z"}}' @@ -3358,7 +3358,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d85f-0000-0500-0000-6900d9f60000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:57:25.0071064Z"}}' @@ -3408,7 +3408,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d85f-0000-0500-0000-6900d9f60000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:57:25.0071064Z"}}' @@ -3458,7 +3458,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d85f-0000-0500-0000-6900d9f60000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cs_cli_test_000002/subnets/subnet","ignoreMissingVnetServiceEndpoint":true}],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:57:25.0071064Z"}}' @@ -3513,7 +3513,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6030366-0000-0500-0000-6900da160000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:58:30.0062852Z"}}' @@ -3721,7 +3721,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d06e-0000-0500-0000-6900da400000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:58:30.0062852Z"}}' @@ -3771,7 +3771,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d06e-0000-0500-0000-6900da400000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:58:30.0062852Z"}}' @@ -3821,7 +3821,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603d06e-0000-0500-0000-6900da400000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:58:30.0062852Z"}}' @@ -3876,7 +3876,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b6038075-0000-0500-0000-6900da600000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Accepted","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:59:44.5126576Z"}}' @@ -4084,7 +4084,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603487c-0000-0500-0000-6900da800000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:59:44.5126576Z"}}' @@ -4134,7 +4134,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603487c-0000-0500-0000-6900da800000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","provisioningState":"Succeeded","internalId":"7afdc816ff6841bf931df9e615716c33","dateCreated":"2025-10-28T14:49:30.9554363Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","networkAcls":{"defaultAction":"Deny","virtualNetworkRules":[],"ipRules":[]},"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"armFeatures":["Microsoft.CognitiveServices/CommitmentTierDCTier1-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier23-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier4-CVRead","Microsoft.CognitiveServices/CommitmentTierDCTier1-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier2-Translator","Microsoft.CognitiveServices/CommitmentTierDCTier1-STT","Microsoft.CognitiveServices/CommitmentTierDCTier4-STT","Microsoft.CognitiveServices/CommitmentTierDCTier1-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier23-NTTS","Microsoft.CognitiveServices/CommitmentTierDCTier1-TA","Microsoft.CognitiveServices/CommitmentTierDCTier23-TA","Microsoft.CognitiveServices/CommitmentTierDCTier4-TA","Microsoft.CognitiveServices/CommitmentTierDCTier1-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier23-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier4-LUIS","Microsoft.CognitiveServices/CommitmentTierDCTier1-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier23-FormRecognizer","Microsoft.CognitiveServices/CommitmentTierDCTier4-FormRecognizer","Microsoft.CognitiveServices/Container.TT.TextTranslation","Microsoft.CognitiveServices/openAINewModel","microsoft.cognitiveservices/Container.CV.VisionSlimRead","Microsoft.CognitiveServices/openAI1PFtModel","Microsoft.CognitiveServices/Face.Legacy","Microsoft.CognitiveServices/OpenAIFinetune","Microsoft.CognitiveServices/DynamicThrottling","microsoft.cognitiveservices/ComputerVision.API.Private","Microsoft.CognitiveServices/openAI1PRegions","Microsoft.CognitiveServices/ComputerVision.Legacy","Microsoft.CognitiveServices/Face.LegacyPreview","Microsoft.CognitiveServices/openAITest","Microsoft.CognitiveServices/OpenAIFinetune.code-cushman-001","microsoft.cognitiveservices/OpenAIFinetune.Davinci","microsoft.cognitiveservices/OpenAIDedicated","microsoft.cognitiveservices/OpenAIDedicated.code-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.text-davinci-002","microsoft.cognitiveservices/OpenAIDedicated.code-cushman-001","Microsoft.CognitiveServices/openAIRegions.SWITZERLANDNORTH","Microsoft.CognitiveServices/BypassBilling.OpenAI","Microsoft.CognitiveServices/CommitmentTierDC-POCTier","Microsoft.CognitiveServices/OpenAI.DALLE","Microsoft.CognitiveServices/CommitmentTierDCTier1-CSTT","Microsoft.CognitiveServices/Face.Snapshot","Microsoft.CognitiveServices/openAIModels.text-chat-davinci-002","Microsoft.CognitiveServices/SRMR","Microsoft.CognitiveServices/OpenAIFinetune.EastUS","Microsoft.CognitiveServices/CommitmentTierDC-FRReadPOC","Microsoft.CognitiveServices/OpenAIFinetune.WestEurope","Microsoft.CognitiveServices/OpenAIFinetune.SouthCentralUS","Microsoft.CognitiveServices/OpenAIInference.GPT4","Microsoft.CognitiveServices/openAIRegions.FRANCECENTRAL","Microsoft.CognitiveServices/version0501preview","Microsoft.CognitiveServices/openAIDedicated.gpt-35-turbo-gso","Microsoft.CognitiveServices/OpenAI.RAIModifiedFilters","Microsoft.CognitiveServices/OpenAI.RaiPolicy.nil","Microsoft.CognitiveServices/Face.LimitedAccessRestrictionAcknowledged","Microsoft.CognitiveServices/OpenAI.RaiPolicy.127","Microsoft.CognitiveServices/OpenAI.Allow.RetiredModels","Microsoft.CognitiveServices/OpenAI.Provisioned","Microsoft.CognitiveServices/openAI.whisper","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-4-32k","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo","Microsoft.CognitiveServices/OpenAI.Provisioned.gpt-35-turbo-16k","Microsoft.CognitiveServices/allowProvisionedWithoutCommitment","Microsoft.CognitiveServices/OpenAI.DALLEDeploymentsAPI","Microsoft.CognitiveServices/CrossRegionAKV","Microsoft.CognitiveServices/OnYourDataElasticsearch","Microsoft.CognitiveServices/OpenAi.NspPreview","Microsoft.CognitiveServices/OpenAI.GlobalRouting","Microsoft.CognitiveServices/OpenAI.Preview.202409","Microsoft.CognitiveServices/CommitmentTierDCTier3-AACS","Microsoft.CognitiveServices/OpenAI.gpt-45-preview","Microsoft.CognitiveServices/OpenAI.computer-use-preview","Microsoft.CognitiveServices/Container.CV.ComputerVisionRead","Microsoft.CognitiveServices/Container.TA.Healthcare","Microsoft.CognitiveServices/Cloud.TA.Healthcare","Microsoft.CognitiveServices/TIPrivatePreview","Microsoft.CognitiveServices/test","Microsoft.CognitiveServices/LegalTerms.ComputerVision.SpatialAnaysisRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForPIIRAITermsAccepted","Microsoft.CognitiveServices/LegalTerms.TextAnalytics.TAForHealthRAITermsAccepted","Microsoft.CognitiveServices/openAIPreview","Microsoft.CognitiveServices/CommitmentTierDCTier34-Translator","Microsoft.CognitiveServices/OpenAI.Inference.GPT-Turbo-0301.SwedenCentral","Microsoft.CognitiveServices/openAIRegions.CANADACENTRAL","Microsoft.CognitiveServices/manualApprove","Microsoft.CognitiveServices/Face.Detection","Microsoft.CognitiveServices/Face.Verification","Microsoft.CognitiveServices/Face.Identification","Microsoft.CognitiveServices/OpenAI.Provisioned.BypassMinimumCapacityCheck","Microsoft.CognitiveServices/OpenAI.ProvisionedManaged.o1","Microsoft.CognitiveServices/anomalyFinderPrivatePreview","Microsoft.CognitiveServices/apiDeprecated","Microsoft.CognitiveServices/apiTest","Microsoft.CognitiveServices/apiPreview","Microsoft.CognitiveServices/bingCustomVisualSearchPreview","Microsoft.CognitiveServices/crisInternal","Microsoft.CognitiveServices/privatePreviewAccess","Microsoft.CognitiveServices/regionPreview","Microsoft.CognitiveServices/vnetPublicPreview","Microsoft.CognitiveServices/LUISV4Documents","Microsoft.CognitiveServices/byoxPreview","Microsoft.CognitiveServices/LanguageModelPrivatePreview","Microsoft.Resources/EUAPParticipation"]},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:29.8595181Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:59:44.5126576Z"}}' @@ -4186,7 +4186,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint.yaml index 9b79d9327c7..c85647c398a 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503c4f2-0000-0500-0000-6900d8170000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"5dc5097ced91485690a5087900672e7a","dateCreated":"2025-10-28T14:49:57.2380954Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -231,7 +231,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5036dfb-0000-0500-0000-6900d8360000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"5dc5097ced91485690a5087900672e7a","dateCreated":"2025-10-28T14:49:57.2380954Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -711,7 +711,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5036dfb-0000-0500-0000-6900d8360000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"5dc5097ced91485690a5087900672e7a","dateCreated":"2025-10-28T14:49:57.2380954Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -1252,7 +1252,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b603da09-0000-0500-0000-6900d8710000\"","location":"SOUTHCENTRALUS","sku":{"name":"S"},"kind":"TextAnalytics","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"5dc5097ced91485690a5087900672e7a","dateCreated":"2025-10-28T14:49:57.2380954Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"*","method":"*"}]}]},"quotaLimit":{"rules":[{"key":"workflow.endpoint.postcalls","renewalPeriod":2592000,"count":100000,"matchPatterns":[{"path":"/language/:analyze-conversations","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.aeb447cb-3c4f-4b7f-9ca5-6f3720cd39fc","name":"cs_cli_test_000002/pecs_cli_test_000002.aeb447cb-3c4f-4b7f-9ca5-6f3720cd39fc","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved","actionsRequired":"None"}}}],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis"}],"endpoints":{"Text @@ -1574,7 +1574,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint_connection.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint_connection.yaml index ee5de8ae05d..01dae9e3cf9 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint_connection.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_private_endpoint_connection.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50350eb-0000-0500-0000-6900d7f90000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"c3ac424806204015b5f3257d6fe16111","dateCreated":"2025-10-28T14:49:27.9456919Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:26.7785272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:26.7785272Z"}}' @@ -176,7 +176,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5034bf3-0000-0500-0000-6900d8190000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"c3ac424806204015b5f3257d6fe16111","dateCreated":"2025-10-28T14:49:27.9456919Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:26.7785272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:26.7785272Z"}}' @@ -651,7 +651,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b5034bf3-0000-0500-0000-6900d8190000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"c3ac424806204015b5f3257d6fe16111","dateCreated":"2025-10-28T14:49:27.9456919Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:26.7785272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:26.7785272Z"}}' @@ -1187,7 +1187,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503ebfb-0000-0500-0000-6900d8380000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"c3ac424806204015b5f3257d6fe16111","dateCreated":"2025-10-28T14:49:27.9456919Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002/privateEndpointConnections/pecs_cli_test_000002.629bde1d-9695-4bf4-b5ae-06ed6779e610","name":"cs_cli_test_000002/pecs_cli_test_000002.629bde1d-9695-4bf4-b5ae-06ed6779e610","type":"Microsoft.CognitiveServices/accounts/privateEndpointConnections","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/pecs_cli_test_000002"},"groupIds":["account"],"privateLinkServiceConnectionState":{"status":"Approved","description":"Approved","actionsRequired":"None"}}}],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:49:26.7785272Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:49:26.7785272Z"}}' @@ -2001,7 +2001,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml index d26a69829e6..3ecd22947e1 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_softdelete.yaml @@ -20,7 +20,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503bee3-0000-0500-0000-6900d7db0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Creating"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:55.6182651Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:55.6182651Z"}}' @@ -226,7 +226,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a8eb-0000-0500-0000-6900d7fa0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:55.6182651Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:55.6182651Z"}}' @@ -276,7 +276,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b503a8eb-0000-0500-0000-6900d7fa0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:55.6182651Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:55.6182651Z"}}' @@ -328,7 +328,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -378,7 +378,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/SOUTHCENTRALUS/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/SOUTHCENTRALUS/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/SOUTHCENTRALUS/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"b50397f3-0000-0500-0000-6900d81a0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"deletionDate":"2025-10-28T14:50:02.4583939Z","scheduledPurgeDate":"2025-10-30T14:50:02.4583939Z","provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:48:55.6182651Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:48:55.6182651Z"}}' @@ -432,7 +432,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50351f4-0000-0500-0000-6900d81c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:50:04.5806192Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:04.5806192Z"}}' @@ -486,7 +486,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002","name":"cs_cli_test_000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"b50351f4-0000-0500-0000-6900d81c0000\"","location":"SOUTHCENTRALUS","sku":{"name":"S0"},"kind":"FormRecognizer","properties":{"endpoint":"https://csclitest000003.cognitiveservices.azure.com/","internalId":"238cf92b881d454c8c2d3336d4bf108e","dateCreated":"2025-10-28T14:48:57.089337Z","callRateLimit":{"rules":[{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"default","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000003","allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"DynamicThrottling"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"Container","value":"FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp"}],"endpoints":{"FormRecognizer":"https://csclitest000003.cognitiveservices.azure.com/","Container":"https://csclitest000003.cognitiveservices.azure.com/"},"provisioningState":"Succeeded"},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2025-10-28T14:50:04.5806192Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2025-10-28T14:50:04.5806192Z"}}' @@ -538,7 +538,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -590,7 +590,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/SOUTHCENTRALUS/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/SOUTHCENTRALUS/resourceGroups/clitest.rg000001/deletedAccounts/cs_cli_test_000002?api-version=2026-01-15-preview response: body: string: '' @@ -694,7 +694,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/deletedAccounts?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/deletedAccounts?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/westus/resourceGroups/csassineacctest11/deletedAccounts/csassineacctest11","name":"csassineacctest11","type":"Microsoft.CognitiveServices/deletedAccounts","etag":"\"1500a783-0000-0700-0000-68ff24bd0000\"","location":"westus","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://csassineacctest11.cognitiveservices.azure.com/","internalId":"055eec5c50e243e7b40487d73eab69b1","dateCreated":"2025-10-27T04:01:08.6085157Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csassineacctest11","allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"restrictOutboundNetworkAccess":false,"allowedFqdnList":[],"disableLocalAuth":false,"dynamicThrottlingEnabled":false,"endpoints":{"AI diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml index d2745a578ea..26a56e95e60 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_cognitiveservices_user_owned_storage.yaml @@ -115,7 +115,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"0101329b-0000-0d00-0000-6900d86d0000\"","location":"WESTEUROPE","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"5c753c4c79bb44e9a9c577baaa43409d","dateCreated":"2025-10-28T14:51:25.4920167Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}],"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CommitmentPlan"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization"}],"endpoints":{"Speech @@ -189,7 +189,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003","name":"cs_cli_test_000003","type":"Microsoft.CognitiveServices/accounts","etag":"\"0101329b-0000-0d00-0000-6900d86d0000\"","location":"WESTEUROPE","sku":{"name":"S0"},"kind":"SpeechServices","properties":{"endpoint":"https://westeurope.api.cognitive.microsoft.com/","internalId":"5c753c4c79bb44e9a9c577baaa43409d","dateCreated":"2025-10-28T14:51:25.4920167Z","callRateLimit":{"rules":[{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"default","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"userOwnedStorage":[{"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002"}],"allowProjectManagement":false,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"CommitmentPlan"},{"name":"VirtualNetworks"},{"name":"CustomerManagedKey"},{"name":"CustomerManagedStorage"},{"name":"Container","value":"SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization"}],"endpoints":{"Speech @@ -261,7 +261,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cs_cli_test_000003?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_project_connections_from_file.yaml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_project_connections_from_file.yaml index c30c97091ad..f942d270d8e 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_project_connections_from_file.yaml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/recordings/test_project_connections_from_file.yaml @@ -21,7 +21,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f3062cd1-0000-0100-0000-6900d8a20000\"","location":"eastus","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","internalId":"3d20fead7d1f48d38becb0fd3b10a27f","dateCreated":"2025-10-28T14:52:15.3094624Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000005","allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -213,7 +213,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002","name":"cog000002","type":"Microsoft.CognitiveServices/accounts","etag":"\"f30694d2-0000-0100-0000-6900d8a70000\"","location":"eastus","sku":{"name":"S0"},"kind":"AIServices","properties":{"endpoint":"https://csclitest000005.cognitiveservices.azure.com/","internalId":"3d20fead7d1f48d38becb0fd3b10a27f","dateCreated":"2025-10-28T14:52:15.3094624Z","apiProperties":{"qnaAzureSearchEndpointKey":null},"callRateLimit":{"rules":[{"key":"documentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"POST"}]},{"key":"documentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"GET"}]},{"key":"documentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/text/batch/*","method":"*"}]},{"key":"textTranslation","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"translator/text/*","method":"*"}]},{"key":"singledocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document:translate","method":"*"}]},{"key":"batchDocumentTranslation.post","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"POST"}]},{"key":"batchDocumentTranslation.get","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"GET"}]},{"key":"batchDocumentTranslation.default","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"translator/document/*","method":"*"}]},{"key":"workflow.endpoint.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-conversations","method":"*"}]},{"key":"textAnalytics.conversations.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs/*","method":"GET"}]},{"key":"textAnalytics.conversations.jobs.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-conversations/jobs","method":"POST"}]},{"key":"textAnalytics.analyzetext.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:analyze-text","method":"POST"}]},{"key":"textAnalytics.analyzetext.jobs.getcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/analyze-text/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzetext.jobs.postcalls","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"language/analyze-text/jobs","method":"POST"}]},{"key":"textAnalytics.analyzedocuments.jobs.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs/*","method":"GET"}]},{"key":"textAnalytics.analyzedocuments.jobs.postcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-documents/jobs","method":"POST"}]},{"key":"textAnalytics.generate.postcalls","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"language/:generate","method":"*"}]},{"key":"textAnalytics.authoring.customtext.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.march.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.march.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-text/projects/*","method":"*"}]},{"key":"textAnalytics.authoring.customtext.internal.getcalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.internal.updatecalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-text/internal/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.march.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/authoring/analyze-conversations/projects/*","method":"*"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.getCalls","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"GET"}]},{"key":"textAnalytics.unifiedAuthoring.clu.internal.updateCalls","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"language/analyze-conversations/internal/projects/*","method":"*"}]},{"key":"textAnalytics.customText","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"text/analytics/v3.1-preview.ct.1/analyze/*","method":"*"}]},{"key":"textAnalytics.analyze","renewalPeriod":60,"count":300,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/v3.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.1/analyze/*","method":"*"},{"path":"text/analytics/v3.2-preview.2/analyze/*","method":"*"}]},{"key":"textAnalytics.healthcare","renewalPeriod":60,"count":300,"matchPatterns":[{"path":"text/analytics/v3.1/entities/health","method":"*"},{"path":"text/analytics/v3.2-preview.1/health","method":"*"},{"path":"text/analytics/v3.2-preview.2/health","method":"*"}]},{"key":"textAnalytics.languagedetection","renewalPeriod":60,"count":1000,"matchPatterns":[{"path":"text/analytics/v3.1/languages","method":"*"}]},{"key":"textAnalytics","renewalPeriod":60,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"text/analytics/*","method":"*"}]},{"key":"questionanswering","renewalPeriod":60,"count":600,"matchPatterns":[{"path":"qnamaker/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering","renewalPeriod":1,"count":3,"matchPatterns":[{"path":"language/query-knowledgebases/*","method":"*"}]},{"key":"unifiedlanguage.questionanswering.inference","renewalPeriod":1,"count":10,"matchPatterns":[{"path":"language/:query-*","method":"*"}]},{"key":"textAnalytics.analyze.internal.autoTagging","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-auto-tagging","method":"*"}]},{"key":"textAnalytics.analyze.internal.evaluation","renewalPeriod":60,"count":150,"matchPatterns":[{"path":"TextAnalytics/ct-evaluation","method":"*"}]},{"key":"token","renewalPeriod":1,"count":50,"matchPatterns":[{"path":"sts/v1.0/*","method":"*"}]},{"key":"speech.synthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/synthesize","method":"*"}]},{"key":"speech.customvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customvoicesynthesize","method":"*"}]},{"key":"speech.neuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/neuralvoicesynthesize","method":"*"}]},{"key":"speech.aoaivoicesynthesize","renewalPeriod":60,"count":10,"matchPatterns":[{"path":"speech/aoaivoicesynthesize","method":"*"}]},{"key":"speech.aoaihdvoicesynthesize","renewalPeriod":60,"count":3,"matchPatterns":[{"path":"speech/aoaihdvoicesynthesize","method":"*"}]},{"key":"speech.customneuralvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/customneuralvoicesynthesize","method":"*"}]},{"key":"speech.personalvoicesynthesize","renewalPeriod":1,"count":200,"matchPatterns":[{"path":"speech/personalvoicesynthesize","method":"*"}]},{"key":"speech.liveavatarconnect","renewalPeriod":60,"count":1,"matchPatterns":[{"path":"speech/liveavatarconnect","method":"*"}]},{"key":"speech.livecustomavatarconnect","renewalPeriod":60,"count":200,"matchPatterns":[{"path":"speech/livecustomavatarconnect","method":"*"}]},{"key":"speech.batchavatarcreate","renewalPeriod":60,"count":2,"matchPatterns":[{"path":"avatar/batchsyntheses/*","method":"PUT"}]},{"key":"speech.conversationtranscription","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"speech/singlechannelaudioconversationtranscription","method":"*"},{"path":"speech/multichannelaudioconversationtranscribe","method":"*"},{"path":"speech/videoconversationtranscribe","method":"*"}]},{"key":"speech.speechtotext","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"speechtotext/*","method":"*"}]},{"key":"speech.batchtexttospeechcreate","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/batchsyntheses/*","method":"PUT"}]},{"key":"speech.texttospeech","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"texttospeech/*","method":"*"}]},{"key":"speech.customvoice","renewalPeriod":10,"count":100,"matchPatterns":[{"path":"customvoice/*","method":"*"}]},{"key":"speech.speakerrecognitionv2","renewalPeriod":1,"count":20,"matchPatterns":[{"path":"speaker/*","method":"*"},{"path":"speaker-recognition/*","method":"*"}]},{"key":"speech.speakerrecognitionv1","renewalPeriod":1,"count":5,"matchPatterns":[{"path":"spid/*","method":"*"}]},{"key":"formrecognizer.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{id}/analyze","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/businessCard/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/idDocument/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/invoice/analyze","method":"POST"},{"path":"formrecognizer/layout/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/analyze","method":"POST"},{"path":"formrecognizer/prebuilt/receipt/asyncBatchAnalyze","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:analyze","method":"POST"},{"path":"formrecognizer/read","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyze?_overload=analyzeDocument","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}:analyze?_overload=classifyDocument","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:analyzeBatch","method":"POST"}]},{"key":"formrecognizer.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/businessCard/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/idDocument/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/invoice/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/prebuilt/receipt/operations/{operationId}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/layout/analyzeResults/{resultId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}/copyResults/{resultId}","method":"GET"},{"path":"formrecognizer/operations/{operationId}","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"GET"},{"path":"formrecognizer/custom/models/{id}","method":"GET"},{"path":"formrecognizer/documentModels/{modelId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"GET"},{"path":"formrecognizer/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}","method":"GET"},{"path":"documentintelligence/operations/{operationId}?_overload={_overload}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"GET"},{"path":"documentintelligence/documentClassifiers/{classifierId}/analyzeResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults/{resultId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/figures/{figureId}","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeResults/{resultId}/pdf","method":"GET"}]},{"key":"formrecognizer.list.objects","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/operations","method":"GET"},{"path":"formrecognizer/info","method":"GET"},{"path":"formrecognizer/documentModels","method":"GET"},{"path":"formrecognizer/custom/models","method":"GET"},{"path":"formrecognizer/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels","method":"GET"},{"path":"documentintelligence/operations","method":"GET"},{"path":"documentintelligence/info","method":"GET"},{"path":"documentintelligence/documentClassifiers","method":"GET"},{"path":"documentintelligence/documentModels/{modelId}/analyzeBatchResults","method":"GET"}]},{"key":"formrecognizer.model.management","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"formrecognizer/custom/models","method":"POST"},{"path":"formrecognizer/custom/models/compose","method":"POST"},{"path":"formrecognizer/custom/models/copyAuthorization","method":"POST"},{"path":"formrecognizer/custom/models/{id}","method":"DELETE"},{"path":"formrecognizer/custom/models/{id}/keys","method":"GET"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/custom/models/{modelId}/copy","method":"POST"},{"path":"formrecognizer/documentModels/{modelId}:copyTo","method":"POST"},{"path":"formrecognizer/documentModels:authorizeCopy","method":"POST"},{"path":"formrecognizer/documentModels:build","method":"POST"},{"path":"formrecognizer/documentModels:compose","method":"POST"},{"path":"formrecognizer/custom/train","method":"POST"},{"path":"formrecognizer/custom/models/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentModels/{modelId}","method":"DELETE"},{"path":"formrecognizer/documentClassifiers:build","method":"POST"},{"path":"formrecognizer/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentModels:authorizeCopy","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}:copyTo","method":"POST"},{"path":"documentintelligence/documentModels:build","method":"POST"},{"path":"documentintelligence/documentModels:compose","method":"POST"},{"path":"documentintelligence/documentModels/{modelId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers:build","method":"POST"},{"path":"documentintelligence/documentClassifiers/{classifierId}","method":"DELETE"},{"path":"documentintelligence/documentClassifiers/{classifierId}:copyTo","method":"POST"},{"path":"documentintelligence/documentClassifiers:authorizeCopy","method":"POST"}]},{"key":"formrecognizer.chat.build","renewalPeriod":1,"count":15,"matchPatterns":[{"path":"documentintelligence/chat:build","method":"POST"}]},{"key":"formrecognizer.chat.complete","renewalPeriod":60,"count":5,"matchPatterns":[{"path":"documentintelligence/chat/{chatId}:complete","method":"POST"}]},{"key":"formrecognizer.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"documentintelligence/labelingProjects/*","method":"*"},{"path":"documentintelligence/classificationProjects/*","method":"*"},{"path":"documentintelligence/labelingProjects","method":"GET"},{"path":"documentintelligence/classificationProjects","method":"GET"}]},{"key":"vision.recognizeText","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/recognizeText","method":"POST"},{"path":"vision/textOperations/*","method":"GET"},{"path":"vision/read/*","method":"*"}]},{"key":"vision","renewalPeriod":1,"count":20,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"vision/*","method":"*"}]},{"key":"container.billing","renewalPeriod":10,"count":500,"matchPatterns":[{"path":"billing/*","method":"*"}]},{"key":"ContentSafety.AgentTaskAdherence","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/agent:analyzeTaskAdherence*","method":"*"}]},{"key":"ContentSafety.List","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/blocklists*","method":"*"}]},{"key":"ContentSafety.TextGroundedDetection","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectGroundedness*","method":"*"}]},{"key":"ContentSafety.TextShieldPrompt","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:shieldPrompt*","method":"*"}]},{"key":"ContentSafety.TextDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectIncidents*","method":"*"}]},{"key":"ContentSafety.TextAnalyzeCustomCategory","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:analyzeCustomCategory*","method":"*"}]},{"key":"ContentSafety.TextAutoReview","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:autoReview*","method":"*"}]},{"key":"ContentSafety.GPTFeature","renewalPeriod":10,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectungroundedness*","method":"*"}]},{"key":"ContentSafety.TextJailbreak","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectJailbreak*","method":"*"}]},{"key":"ContentSafety.TextProtectedMaterial","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text:detectProtectedMaterial*","method":"*"}]},{"key":"ContentSafety.Unified1PAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze1p*","method":"*"}]},{"key":"ContentSafety.AnalyzeWithRaiPolicyAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyzeWithRaiPolicy*","method":"*"}]},{"key":"ContentSafety.UnifiedAPI","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/analyze*","method":"*"}]},{"key":"ContentSafety.RaiPoliciesAPI","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/raiPolicies*","method":"*"}]},{"key":"ContentSafety.TextIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/incidents*","method":"*"}]},{"key":"ContentSafety.TextAutoReviewers","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/autoReviewers*","method":"*"}]},{"key":"ContentSafety.TextCustomCategories","renewalPeriod":1,"count":5,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text/categories*","method":"*"}]},{"key":"ContentSafety.Text","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/text*","method":"*"}]},{"key":"ContentSafety.ImageWithText","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/imageWithText*","method":"*"}]},{"key":"ContentSafety.ImageDetectIncidents","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image:detectIncidents*","method":"*"}]},{"key":"ContentSafety.ImageIncidentResponse","renewalPeriod":10,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image/incidents*","method":"*"}]},{"key":"ContentSafety.Image","renewalPeriod":10,"count":1000,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/image*","method":"*"}]},{"key":"ContentSafety.Project","renewalPeriod":1,"count":30,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/projects*","method":"*"}]},{"key":"ContentSafety.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/metrics*","method":"*"}]},{"key":"ContentSafety.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/whitelist*","method":"*"}]},{"key":"ContentSafetyInternal.Metrics","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/metrics*","method":"*"}]},{"key":"ContentSafetyInternal.Feature","renewalPeriod":1,"count":100,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentsafety/internal/whitelist*","method":"*"}]},{"key":"contentunderstanding.analyze","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}:analyze","method":"POST"},{"path":"/analyzers/{analyzerId}:analyzebinary","method":"POST"},{"path":"/classifiers/{classifierId}:classify","method":"POST"}]},{"key":"contentunderstanding.get.object","renewalPeriod":1,"count":50,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzerResults/{operationId}/files/{path}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}","method":"GET"},{"path":"contentunderstanding/analyzers/{analyzerId}/results/{operationId}/images/{imageId}","method":"GET"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"GET"},{"path":"contentunderstanding/classifierResults/{operationId}","method":"GET"}]},{"key":"contentunderstanding.list.object","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers","method":"GET"},{"path":"contentunderstanding/classifiers","method":"GET"}]},{"key":"contentunderstanding.analyzer.management","renewalPeriod":1,"count":15,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PUT"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"DELETE"},{"path":"contentunderstanding/analyzers/{analyzerId}","method":"PATCH"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PUT"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"DELETE"},{"path":"contentunderstanding/classifiers/{classifierId}","method":"PATCH"},{"path":"contentunderstanding/analyzers/{analyzerId}:grantCopyAuthorization","method":"POST"},{"path":"contentunderstanding/analyzers/{analyzerId}:copy","method":"POST"}]},{"key":"contentunderstanding.labeling","renewalPeriod":1,"count":100,"matchPatterns":[{"path":"contentunderstanding/labelingProjects","method":"GET"},{"path":"contentunderstanding/labelingProjects/*","method":"*"},{"path":"contentunderstanding/classificationProjects","method":"GET"},{"path":"contentunderstanding/classificationProjects/*","method":"*"}]},{"key":"contentunderstanding.face","renewalPeriod":1,"count":10,"dynamicThrottlingEnabled":true,"matchPatterns":[{"path":"contentunderstanding/personDirectories","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces/{faceId}","method":"*"},{"path":"contentunderstanding/faces:detect","method":"*"},{"path":"contentunderstanding/faces:compare","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons:identify","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/faces:find","method":"*"},{"path":"contentunderstanding/personDirectories/{personDirectoryId}/persons/{personId}:verify","method":"*"}]},{"key":"models","renewalPeriod":1,"count":30000,"matchPatterns":[{"path":"/models","method":"*"}]},{"key":"openai.dalle.post","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"POST"},{"path":"openai/images/*","method":"POST"}]},{"key":"openai.dalle.other","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"dalle/*","method":"*"},{"path":"openai/operations/images/*","method":"*"}]},{"key":"openai.assistants.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/assistants","method":"GET"}]},{"key":"openai.threads.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/threads","method":"GET"}]},{"key":"openai.vectorstores.list","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/vector_stores","method":"GET"}]},{"key":"openai.vectorstores.post","renewalPeriod":1,"count":60,"matchPatterns":[{"path":"openai/vector_stores","method":"POST"},{"path":"openai/vector_stores/*","method":"POST"}]},{"key":"openai.assistants.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/assistants","method":"*"},{"path":"openai/assistants/*","method":"*"},{"path":"openai/threads","method":"*"},{"path":"openai/threads/*","method":"*"},{"path":"openai/vector_stores","method":"*"},{"path":"openai/vector_stores/*","method":"*"}]},{"key":"openai.responses.default","renewalPeriod":1,"count":100000,"matchPatterns":[{"path":"openai/responses","method":"*"},{"path":"openai/responses/*","method":"*"}]},{"key":"openai.batches.post","renewalPeriod":60,"count":30,"matchPatterns":[{"path":"openai/v1/batches","method":"POST"},{"path":"openai/batches","method":"POST"}]},{"key":"openai.batches.get","renewalPeriod":60,"count":500,"matchPatterns":[{"path":"openai/v1/batches/*","method":"GET"},{"path":"openai/batches/*","method":"GET"}]},{"key":"openai.batches.list","renewalPeriod":60,"count":100,"matchPatterns":[{"path":"openai/v1/batches","method":"GET"},{"path":"openai/batches","method":"GET"}]},{"key":"openai.moderations.post","renewalPeriod":60,"count":120,"matchPatterns":[{"path":"openai/v1/moderations","method":"POST"},{"path":"openai/v1/safeberry/moderations","method":"POST"}]},{"key":"openai","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"openai/*","method":"*"}]},{"key":"api.projects.default","renewalPeriod":1,"count":10000,"matchPatterns":[{"path":"api/projects/*","method":"*"}]},{"key":"default","renewalPeriod":1,"count":30,"matchPatterns":[{"path":"*","method":"*"}]}]},"isMigrated":false,"customSubDomainName":"csclitest000005","allowProjectManagement":true,"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","capabilities":[{"name":"VirtualNetworks"},{"name":"TrustedServices","value":"Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.CognitiveServices,Microsoft.MachineLearningServices,Microsoft.Search,Microsoft.VideoIndexer,Microsoft.CognitiveServices"},{"name":"CustomerManagedKey"},{"name":"raiLevelOverride"},{"name":"MaxFineTuneCount","value":"500"},{"name":"MaxRunningFineTuneCount","value":"3"},{"name":"MaxUserFileCount","value":"100"},{"name":"MaxTrainingFileSize","value":"512000000"},{"name":"MaxUserFileImportDurationInHours","value":"1"},{"name":"MaxFineTuneJobDurationInHours","value":"720"},{"name":"MaxEvaluationRunDurationInHours","value":"5"},{"name":"MaxRunningEvaluationCount","value":"5"},{"name":"NetworkSecurityPerimeter"},{"name":"EnableRLSForThrottling","value":"false"},{"name":"MaxRunningGlobalStandardFineTuneCount","value":"3"},{"name":"BypassBilling"},{"name":"RaiMonitor"},{"name":"FinetunedModelRouterEndpoint"},{"name":"FinetunedModelRouterScoreThreshold","value":"0.171"},{"name":"quotaRefundsEnabled","value":"false"},{"name":"Container","value":"ContentSafety.*,ContentSafety.TextAnalyze,ContentSafety.ImageAnalyze,ComputerVision.*,ComputerVision.VideoAnalytics,ComputerVision.ComputerVisionRead,ComputerVision.ocr,ComputerVision.readfile,ComputerVision.readfiledsd,ComputerVision.recognizetext,ComputerVision.ComputerVision,ComputerVision.ocrlayoutworker,ComputerVision.ocrcontroller,ComputerVision.ocrdispatcher,ComputerVision.ocrbillingprocessor,ComputerVision.ocranalyzer,ComputerVision.ocrpagesplitter,ComputerVision.ocrapi,ComputerVision.ocrengineworker,ComputerVision.VisionSlimRead,ComputerVision.API.Private,FormRecognizer.*,FormRecognizer.Forms,FormRecognizer.FormRecognizerCustomSupervised,FormRecognizer.FormRecognizerLayout,FormRecognizer.formrecognizerreadlayout,FormRecognizer.FormRecognizerId,FormRecognizer.FormRecognizerInvoice,FormRecognizer.FormRecognizerReceipt,FormRecognizer.FormRecognizerBusinessCard,FormRecognizer.FormRecognizerRead,FormRecognizer.FormRecognizerKvp,SpeechServices.*,SpeechServices.CustomSpeechToText,SpeechServices.NeuralTextToSpeech,SpeechServices.NeuralTextToSpeechOnPrem,SpeechServices.DPP,SpeechServices.SpeechToText,SpeechServices.ctsdiarizer,SpeechServices.diarization,TextAnalytics.*,TextAnalytics.Healthcare,TextAnalytics.HealthcareFhir,TextAnalytics.EntityV3,TextAnalytics.EntityONNX,TextAnalytics.Keyphrase,TextAnalytics.KeyphraseV2,TextAnalytics.KeyPhraseONNX,TextAnalytics.LanguageFastText,TextAnalytics.Language,TextAnalytics.LanguageV2,TextAnalytics.Sentiment,TextAnalytics.SentimentV2,TextAnalytics.SentimentV3,TextAnalytics.SentimentV3Preview,TextAnalytics.SentimentONNX,TextAnalytics.CustomNER,TextAnalytics.textanalyticsdispatcher,TextAnalytics.SummarizationFrontend,TextAnalytics.SummarizationWorker,TextAnalytics.PII,TextAnalytics.CluRuntime,TextAnalytics.CluContainer,TextAnalytics.NER,TextTranslation.*,TextTranslation.TextTranslation"},{"name":"DynamicThrottling"},{"name":"Srmr"},{"name":"Scenario","value":"ComputerVision.Legacy"},{"name":"CommitmentPlan"},{"name":"CustomerManagedStorage"},{"name":"Cloud","value":"TextAnalytics.Healthcare,TextAnalytics.Analyze,QuestionAnswer.AllApis,LanguageService.QuestionAnsweringApis,TextTranslation.TextTranslation"}],"endpoints":{"AI @@ -304,7 +304,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003","name":"cog000002/prj000003","type":"Microsoft.CognitiveServices/accounts/projects","etag":"\"0f00c318-0000-0100-0000-6900d8ca0000\"","location":"eastus","kind":"AIServices","properties":{"endpoints":{"AI @@ -360,7 +360,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects?api-version=2026-01-15-preview response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003","name":"cog000002/prj000003","type":"Microsoft.CognitiveServices/accounts/projects","etag":"\"0f00c318-0000-0100-0000-6900d8ca0000\"","location":"eastus","kind":"AIServices","properties":{"endpoints":{"AI @@ -416,7 +416,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2026-01-15-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003","name":"cog000002/prj000003","type":"Microsoft.CognitiveServices/accounts/projects","etag":"\"0f00ca18-0000-0100-0000-6900d8cb0000\"","location":"eastus","kind":"AIServices","properties":{"endpoints":{"AI @@ -478,7 +478,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2026-01-15-preview response: body: string: '{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004","name":"conn000004","type":"Microsoft.CognitiveServices/accounts/projects/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":false,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:53:00.5550282Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:53:00.5550282Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}' @@ -538,7 +538,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections?api-version=2025-09-01&includeAll=false + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections?api-version=2026-01-15-preview&includeAll=false response: body: string: '{"value":[{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004","name":"conn000004","type":"Microsoft.CognitiveServices/accounts/projects/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":false,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:53:00.5550282Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:53:00.5550282Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}]}' @@ -596,7 +596,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2026-01-15-preview response: body: string: '{"tags":null,"location":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004","name":"conn000004","type":"Microsoft.CognitiveServices/accounts/projects/connections","properties":{"authType":"ManagedIdentity","credentials":null,"group":"Azure","category":"ContainerRegistry","expiryTime":null,"target":"https://test-feed.com","useWorkspaceManagedIdentity":false,"isSharedToAll":false,"sharedUserList":[],"peRequirement":"NotRequired","peStatus":"NotApplicable","error":null,"isDefault":true,"metadata":{}},"systemData":{"createdAt":"2025-10-28T14:53:00.5550282Z","createdBy":"test@example.com","createdByType":"User","lastModifiedAt":"2025-10-28T14:53:00.5550282Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User"}}' @@ -656,7 +656,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003/connections/conn000004?api-version=2026-01-15-preview response: body: string: '' @@ -714,7 +714,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002/projects/prj000003?api-version=2026-01-15-preview response: body: string: '' @@ -766,7 +766,7 @@ interactions: User-Agent: - AZURECLI/2.78.0 azsdk-python-core/1.35.0 Python/3.12.3 (Linux-6.6.87.2-microsoft-standard-WSL2-x86_64-with-glibc2.39) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2025-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.CognitiveServices/accounts/cog000002?api-version=2026-01-15-preview response: body: string: '' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py index 4ebbe4af6a8..0f5eef77658 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py @@ -12,10 +12,10 @@ TEST_DIR = os.path.abspath(os.path.join(os.path.abspath(__file__), '..')) -# @unittest.skip("Skipped: pending service fix") +@unittest.skip("Skipped: pending service fix") class CognitiveServicesManagedNetworkTests(ScenarioTest): - INPUT_DATA_PATH: str = os.path.join(TEST_DIR, 'data') + INPUT_DATA_PATH: str = os.path.join(TEST_DIR, 'data', 'managed_network') @ResourceGroupPreparer() def test_managed_network_crud(self, resource_group): @@ -188,7 +188,7 @@ def test_outbound_rule_private_endpoint(self, resource_group, storage_account): self.assertEqual(ret.exit_code, 0) # @unittest.skip("ServiceTag rule LRO polling returns 404 - service-side issue") - @ResourceGroupPreparer(random_name_length=20, parameter_name_for_location='location', key='rg_loc') + @ResourceGroupPreparer(random_name_length=20, parameter_name_for_location='location') def test_outbound_rule_service_tag(self, resource_group): """Test Service Tag outbound rule operations.""" From 80a0050c0707418a1aed7b3ca65312ae7264b86e Mon Sep 17 00:00:00 2001 From: M-Hietala <78813398+M-Hietala@users.noreply.github.com> Date: Fri, 3 Apr 2026 13:55:51 -0500 Subject: [PATCH 4/4] review findings fixes --- .../cognitiveservices/_client_factory.py | 4 ---- .../command_modules/cognitiveservices/_params.py | 3 +-- .../command_modules/cognitiveservices/custom.py | 13 +++++++++++-- .../cognitiveservices/linter_exclusions.yml | 5 +++++ .../tests/latest/test_managed_network.py | 15 +-------------- 5 files changed, 18 insertions(+), 22 deletions(-) diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py index e9efdb83de6..776d7b8991f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_client_factory.py @@ -105,10 +105,6 @@ def cf_outbound_rule(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).outbound_rule -def cf_outbound_rules(cli_ctx, *_): - return get_cognitiveservices_management_client(cli_ctx).outbound_rules - - def cf_account_capability_hosts(cli_ctx, *_): return get_cognitiveservices_management_client(cli_ctx).account_capability_hosts diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py index b59fda7f131..3c329cecfc8 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/_params.py @@ -706,7 +706,6 @@ def load_arguments(self, _): help='Firewall SKU for the managed network.') with self.argument_context('cognitiveservices account managed-network update') as c: - c.argument('managed_network_name', default=None) c.argument('managed_network', options_list=['--managed-network'], arg_type=get_enum_type(['allow_internet_outbound', 'allow_only_approved_outbound']), @@ -741,7 +740,7 @@ def load_arguments(self, _): help='Destination for the outbound rule. ' 'For FQDN rules, this is the FQDN string. ' 'For PrivateEndpoint rules, this is the service resource ID. ' - 'For ServiceTag rules, provide a JSON string or @file path.') + 'For ServiceTag rules, provide a JSON string.') c.argument('subresource_target', options_list=['--subresource-target'], help='Subresource target for PrivateEndpoint outbound rules ' diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py index bac065a86b3..e0316286055 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/custom.py @@ -2330,14 +2330,23 @@ def _build_outbound_rule(rule_type, category=None, destination=None, subresource ) if normalized_type == 'ServiceTag': # ServiceTag requires a structured destination object with serviceTag field + # Map camelCase keys (from JSON examples) to snake_case (SDK model kwargs) + _service_tag_key_map = { + 'serviceTag': 'service_tag', + 'portRanges': 'port_ranges', + } + + def _normalize_service_tag_keys(d): + return {_service_tag_key_map.get(k, k): v for k, v in d.items()} + if isinstance(destination, ServiceTagOutboundRuleDestination): dest_obj = destination elif isinstance(destination, dict): - dest_obj = ServiceTagOutboundRuleDestination(**destination) + dest_obj = ServiceTagOutboundRuleDestination(**_normalize_service_tag_keys(destination)) elif isinstance(destination, str): try: dest_dict = json.loads(destination) - dest_obj = ServiceTagOutboundRuleDestination(**dest_dict) + dest_obj = ServiceTagOutboundRuleDestination(**_normalize_service_tag_keys(dest_dict)) except (json.JSONDecodeError, TypeError): dest_obj = ServiceTagOutboundRuleDestination( service_tag=destination, diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml index e843467bfdf..93a609e6972 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/linter_exclusions.yml @@ -9,6 +9,11 @@ cognitiveservices account managed-network: managed_network_name: rule_exclusions: - missing_parameter_test_coverage +cognitiveservices account managed-network update: + parameters: + managed_network_name: + rule_exclusions: + - no_parameter_defaults_for_update_commands cognitiveservices account connection list: parameters: category: diff --git a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py index 0f5eef77658..b21001ba54f 100644 --- a/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py +++ b/src/azure-cli/azure/cli/command_modules/cognitiveservices/tests/latest/test_managed_network.py @@ -194,20 +194,7 @@ def test_outbound_rule_service_tag(self, resource_group): sname = self.create_random_name(prefix='cog', length=12) rule_name = 'test-st-rule' - - # Print resource details so we can share with service team - import sys - from datetime import datetime, timezone - print(f'\n=== SERVICE TAG TEST RESOURCES ===', file=sys.stderr) - print(f'Subscription: {self.get_subscription_id()}', file=sys.stderr) - print(f'Resource Group: {resource_group}', file=sys.stderr) - print(f'Account Name: {sname}', file=sys.stderr) - print(f'Rule Name: {rule_name}', file=sys.stderr) - print(f'Region: eastus', file=sys.stderr) - print(f'API Version: 2025-10-01-preview', file=sys.stderr) - print(f'Timestamp: {datetime.now(timezone.utc).isoformat()}', file=sys.stderr) - print(f'=================================\n', file=sys.stderr) - + self.kwargs.update({ 'sname': sname, 'kind': 'AIServices',